diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-11 13:28:08 -0500 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-11 17:31:43 -0500 |
| commit | ca14942e19788bd01334af64554c3095f3ff0d4a (patch) | |
| tree | 9a05a7224d87e45b3ba2ac88501c66e4f0149ab9 /tests/online/push_util.c | |
| parent | 3f024b6d5439eda83d8bebc197db062c4d6bdfeb (diff) | |
| download | libgit2-ca14942e19788bd01334af64554c3095f3ff0d4a.tar.gz | |
tests: declare functions statically where appropriate
Diffstat (limited to 'tests/online/push_util.c')
| -rw-r--r-- | tests/online/push_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/online/push_util.c b/tests/online/push_util.c index 94e310f3d..cd1831d4c 100644 --- a/tests/online/push_util.c +++ b/tests/online/push_util.c @@ -10,7 +10,7 @@ void updated_tip_free(updated_tip *t) git__free(t); } -void push_status_free(push_status *s) +static void push_status_free(push_status *s) { git__free(s->ref); git__free(s->msg); |
