From: Johannes Schindelin <johannes.schindelin@xxxxxx> This fixes an issue pointed out by clang. Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- upload-pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload-pack.c b/upload-pack.c index 2365b707bc..534e8951a2 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -179,7 +179,7 @@ static void create_pack_file(const struct object_array *have_obj, const struct string_list *uri_protocols) { struct child_process pack_objects = CHILD_PROCESS_INIT; - struct output_state output_state = {0}; + struct output_state output_state = {"\0"}; char progress[128]; char abort_msg[] = "aborting due to possible repository " "corruption on the remote side."; -- gitgitgadget