string-util: fix prototype of explicit_bzero_safe() (#10513)
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 25 Oct 2018 02:41:55 +0000 (11:41 +0900)
committerGitHub <noreply@github.com>
Thu, 25 Oct 2018 02:41:55 +0000 (11:41 +0900)
Follow-up for 87f54463117654af48d6027986c2b21831d41616.

src/basic/string-util.h

index ce9d429..a5b5a16 100644 (file)
@@ -206,7 +206,7 @@ static inline void* explicit_bzero_safe(void *p, size_t l) {
         return p;
 }
 #else
-void explicit_bzero_safe(void *p, size_t l);
+void *explicit_bzero_safe(void *p, size_t l);
 #endif
 
 char *string_erase(char *x);