diff options
author | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2024-11-26 17:10:07 +0100 |
---|---|---|
committer | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2024-11-26 17:10:07 +0100 |
commit | e6c32d9fad18f5a1dcb13c13f02445061b60523b (patch) | |
tree | 21723768ff5e3e0f75e71749d943e0ea88f30987 /src/include/common/parse_manifest.h | |
parent | 2a7b2d97171dd39dca7cefb91008a3c84ec003ba (diff) |
Clean up newlines following left parentheses
Most came in during the 17 cycle, so backpatch there. Some
(particularly reorderbuffer.h) are very old, but backpatching doesn't
seem useful.
Like commits c9d297751959, c4f113e8fef9.
Diffstat (limited to 'src/include/common/parse_manifest.h')
-rw-r--r-- | src/include/common/parse_manifest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/common/parse_manifest.h b/src/include/common/parse_manifest.h index 1b8bc447e44..607db25a3a6 100644 --- a/src/include/common/parse_manifest.h +++ b/src/include/common/parse_manifest.h @@ -50,8 +50,8 @@ struct JsonManifestParseContext extern void json_parse_manifest(JsonManifestParseContext *context, const char *buffer, size_t size); extern JsonManifestParseIncrementalState *json_parse_manifest_incremental_init(JsonManifestParseContext *context); -extern void json_parse_manifest_incremental_chunk( - JsonManifestParseIncrementalState *incstate, const char *chunk, size_t size, +extern void json_parse_manifest_incremental_chunk(JsonManifestParseIncrementalState *incstate, + const char *chunk, size_t size, bool is_last); extern void json_parse_manifest_incremental_shutdown(JsonManifestParseIncrementalState *incstate); |