projects
/
paraslash.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
http_send.c: Fix another doxygen warning.
[paraslash.git]
/
string.c
diff --git
a/string.c
b/string.c
index
bf10783
..
8c97ccf
100644
(file)
--- a/
string.c
+++ b/
string.c
@@
-63,7
+63,8
@@
__must_check __malloc void *para_malloc(size_t size)
void *p = malloc(size);
if (!p) {
- PARA_EMERG_LOG("%s", "malloc failed, aborting\n");
+ PARA_EMERG_LOG("malloc failed (size = %zu), aborting\n",
+ size);
exit(EXIT_FAILURE);
}
return p;