diff options
author | Mattias Andrée <maandree@kth.se> | 2017-05-05 13:43:22 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-05-05 13:43:22 +0200 |
commit | 13a39a9a8671ef0cd5b1f0e78b8462eebc02af65 (patch) | |
tree | ba9ddbfb90655cab5d91ba0922507a692af568de | |
parent | allocsize is dangerous (diff) | |
download | slibc-13a39a9a8671ef0cd5b1f0e78b8462eebc02af65.tar.gz slibc-13a39a9a8671ef0cd5b1f0e78b8462eebc02af65.tar.bz2 slibc-13a39a9a8671ef0cd5b1f0e78b8462eebc02af65.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | include/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h index 1abe26d..320ab06 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -337,7 +337,7 @@ int asprintf(char** restrict, const char* restrict, ...) if (*buffer = NULL, __size += 1, __r >= 0) \ *buffer = __builtin_alloca((size_t)__size * sizeof(char)), \ __r = sprintf(*buffer, format, ##__VA_ARGS__); \ - __r; \ + __r; \ }) # endif |