diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-16 18:02:09 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-16 18:02:09 +0300 |
commit | a435b8da2941d0b3c997420c71b1f4b7b79b52ff (patch) | |
tree | 675a80adca8f2a3ee62d437967961bb93cec83bb /regex_internal.h | |
parent | 0900989f28eb43fe5744b622a1f8ae02f53f26f0 (diff) | |
parent | aaa85643b352f867cfe7198f313b4481ad1f544d (diff) | |
download | egawk-a435b8da2941d0b3c997420c71b1f4b7b79b52ff.tar.gz egawk-a435b8da2941d0b3c997420c71b1f4b7b79b52ff.tar.bz2 egawk-a435b8da2941d0b3c997420c71b1f4b7b79b52ff.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'regex_internal.h')
-rw-r--r-- | regex_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regex_internal.h b/regex_internal.h index 6a870f23..327bd7e0 100644 --- a/regex_internal.h +++ b/regex_internal.h @@ -479,7 +479,7 @@ static void * test_malloc(size_t count, const char *file, size_t line) { if (count == 0) { - fprintf(stderr, "%s:%d: allocation of zero bytes\n", + fprintf(stderr, "%s:%lu: allocation of zero bytes\n", file, line); exit(1); } @@ -490,7 +490,7 @@ static void * test_realloc(void *p, size_t count, const char *file, size_t line) { if (count == 0) { - fprintf(stderr, "%s:%d: reallocation of zero bytes\n", + fprintf(stderr, "%s:%lu: reallocation of zero bytes\n", file, line); exit(1); } |