diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-31 03:38:05 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-31 08:56:03 -0400 |
commit | 1e2fd62d70ff1a960551d28fce745847a9dbd3b7 (patch) | |
tree | 810ed4124d966e439c4bae8653ea6fae70a252a5 /src/shared/util.c | |
parent | b2fadec6048adb3596f2633cb7fe7a49f5937a18 (diff) |
core/load-fragment.c: correct argument sign and split up long lines
With everything on one line they are just harder to read.
Diffstat (limited to 'src/shared/util.c')
-rw-r--r-- | src/shared/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 76cee19261..4c30a98318 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -1230,7 +1230,7 @@ char *cunescape_length_with_prefix(const char *s, size_t length, const char *pre r = new(char, pl+length+1); if (!r) - return r; + return NULL; if (prefix) memcpy(r, prefix, pl); |