diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-09-30 13:19:25 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-30 13:19:25 +0900 |
commit | 37801f0665623e354e91ddd9c0bd5a2a4530fa24 (patch) | |
tree | bde1d5adaa8950904075cf30b345fc3eea166c01 | |
parent | Merge branch 'mh/release-commit-memory-fix' (diff) | |
parent | banned.h: fix vsprintf()'s ban message (diff) | |
download | tgif-37801f0665623e354e91ddd9c0bd5a2a4530fa24.tar.xz |
Merge branch 'tb/banned-vsprintf-namefix'
Error message fix.
* tb/banned-vsprintf-namefix:
banned.h: fix vsprintf()'s ban message
-rw-r--r-- | banned.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ #define vsprintf(...) BANNED(vsprintf) #else #define sprintf(buf,fmt,arg) BANNED(sprintf) -#define vsprintf(buf,fmt,arg) BANNED(sprintf) +#define vsprintf(buf,fmt,arg) BANNED(vsprintf) #endif #endif /* BANNED_H */ |