diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-29 11:13:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-29 11:13:21 +0000 |
commit | c9bf8c600080ff00377aa9d3d552b06202fb1ad6 (patch) | |
tree | 0e3e5a731a800c1adf288e23bcd410fcdc9d57df /stdio-common/vfprintf.c | |
parent | c98d82db4c7fa8d94bcf8759f8f9ed622cc9b77f (diff) | |
download | glibc-c9bf8c600080ff00377aa9d3d552b06202fb1ad6.tar glibc-c9bf8c600080ff00377aa9d3d552b06202fb1ad6.tar.gz glibc-c9bf8c600080ff00377aa9d3d552b06202fb1ad6.tar.bz2 glibc-c9bf8c600080ff00377aa9d3d552b06202fb1ad6.zip |
(process_string_arg): Fix typo.
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r-- | stdio-common/vfprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index f181a0ae00..6d697d8fb0 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -1084,7 +1084,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) outstring (string, len); \ if (left) \ PAD (L' '); \ - if (__builin_expect (string_malloced, 0)) \ + if (__builtin_expect (string_malloced, 0)) \ free (string); \ } \ break; |