diff options
author | Omar Polo <op@omarpolo.com> | 2021-01-22 16:53:21 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-01-22 16:53:21 +0000 |
commit | 3527b7a58a5f228a73f73ba74bc4ff86f7305a60 (patch) | |
tree | 7b8498b73733e8bfa719b33203792045bc1a8926 /configure | |
parent | 30008a68d322f837c12467a26d1bea2215a5a669 (diff) |
missing ; in prototype
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -298,7 +298,7 @@ if [ ${HAVE_STRLCPY} -eq 0 ]; then COMPAT="${COMPAT} compat/strlcpy.o" fi if [ ${HAVE_STRTONUM} -eq 0 ]; then - echo "extern long long strtonum(const char*, long long, long long, const char**)" + echo "extern long long strtonum(const char*, long long, long long, const char**);" COMPAT="${COMPAT} compat/strtonum.o" fi if [ ${HAVE_VASPRINTF} -eq 0 ]; then |