diff options
author | EuAndreh <eu@euandre.org> | 2021-08-24 18:03:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-24 18:03:18 -0300 |
commit | 1c1bbf651948c47f80018c76c9af87724e09539f (patch) | |
tree | 71b360cc3fe9a34d3714f6de1a0108daf5be0d45 /src/lib.c | |
parent | src/lib.c: Move unit_tests_gistatic to the end of the file (diff) | |
download | gistatic-1c1bbf651948c47f80018c76c9af87724e09539f.tar.gz gistatic-1c1bbf651948c47f80018c76c9af87724e09539f.tar.xz |
src/lib.{c,h}: Make args to gistatic_main() const
Diffstat (limited to 'src/lib.c')
-rw-r--r-- | src/lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2224,7 +2224,7 @@ cleanup: return ret; } -int gistatic_main(int argc, char *argv[]) { +int gistatic_main(const int argc, char *const argv[]) { int ret = EXIT_SUCCESS; bool cleanup_libgit = false; catalog_descriptor = catopen(CATALOG_NAME, NL_CAT_LOCALE); |