diff options
| author | uncrustify <david@tethera.net> | 2019-06-13 07:33:13 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-06-14 07:41:27 -0300 |
| commit | 1a8916786f9464af6c8a05713a4c987a6b097a12 (patch) | |
| tree | 95bcd1b68ecd8557057790dc22c3ea8c8734ef2b /util/zlib-extra.c | |
| parent | 33382c2b5ba2537952a60ea378feff36961e4713 (diff) | |
util: run uncrustify
This is the result of running
$ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h
in the util directory
Diffstat (limited to 'util/zlib-extra.c')
| -rw-r--r-- | util/zlib-extra.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/zlib-extra.c b/util/zlib-extra.c index 2b2cd8f9..f691cccf 100644 --- a/util/zlib-extra.c +++ b/util/zlib-extra.c @@ -70,13 +70,14 @@ gz_getline (void *talloc_ctx, char **bufptr, ssize_t *bytes_read, gzFile stream) if (buf == NULL) return UTIL_OUT_OF_MEMORY; } - SUCCESS: + SUCCESS: *bufptr = buf; *bytes_read = offset; return UTIL_SUCCESS; } -const char *gz_error_string (util_status_t status, gzFile file) +const char * +gz_error_string (util_status_t status, gzFile file) { if (status == UTIL_GZERROR) return gzerror (file, NULL); |
