summaryrefslogtreecommitdiff
path: root/usr/src/head/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/head/string.h')
-rw-r--r--usr/src/head/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/head/string.h b/usr/src/head/string.h
index ac2ed5d20e..2194b70bd8 100644
--- a/usr/src/head/string.h
+++ b/usr/src/head/string.h
@@ -176,7 +176,7 @@ extern __thread char *__strdupa_str;
extern __thread size_t __strdupa_len;
#define strdupa(s) \
- (__strdupa_str = (char *)(s), \
+ (__strdupa_str = (char *)(s), \
strcpy((char *)__builtin_alloca(strlen(__strdupa_str) + 1), \
__strdupa_str))