diff options
author | hunt <hunt> | 2005-06-02 15:39:06 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-06-02 15:39:06 +0000 |
commit | f37b5c92191dd81aad57ade2899a4999099a3e35 (patch) | |
tree | ccce60adcf3c4f932bfb60ca07721e3aad3458ae /runtime/print.c | |
parent | 1f6906212fe1fb43f7df19fa6d2ab018acd89436 (diff) | |
download | systemtap-steved-f37b5c92191dd81aad57ade2899a4999099a3e35.tar.gz systemtap-steved-f37b5c92191dd81aad57ade2899a4999099a3e35.tar.xz systemtap-steved-f37b5c92191dd81aad57ade2899a4999099a3e35.zip |
2005-06-02 Martin Hunt <hunt@redhat.com>
* string.c (_stp_string_cat_cstr): Be sure result is
always terminated.
* print.c (_stp_vprintf): Fix typo.
Diffstat (limited to 'runtime/print.c')
-rw-r--r-- | runtime/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/print.c b/runtime/print.c index e9847ef8..e7e97d27 100644 --- a/runtime/print.c +++ b/runtime/print.c @@ -102,7 +102,7 @@ void _stp_print_flush (void) * You probably want _stp_printf(). */ -#define _stp_vprintf(fmt,args) _stp_vsprintf(stdout,fmt,args) +#define _stp_vprintf(fmt,args) _stp_vsprintf(_stp_stdout,fmt,args) /** Write a C string into the print buffer. * Copies a string into a print buffer. |