MCPcopy Create free account
hub / github.com/git/git / task_finished

Function task_finished

t/helper/test-run-command.c:61–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61static int task_finished(int result UNUSED,
62 struct strbuf *err,
63 void *pp_cb UNUSED,
64 void *pp_task_cb)
65{
66 if (err)
67 strbuf_addstr(err, "asking for a quick stop\n");
68 else
69 fprintf(stderr, "asking for a quick stop\n");
70
71 FREE_AND_NULL(pp_task_cb);
72
73 return 1;
74}
75
76static int task_finished_quiet(int result UNUSED,
77 struct strbuf *err UNUSED,

Callers

nothing calls this directly

Calls 1

strbuf_addstrFunction · 0.85

Tested by

no test coverage detected