diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-16 17:45:39 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-16 17:45:39 +0300 |
commit | 971bacc9db2ca88295108fb1e58f3d359ab2c842 (patch) | |
tree | 825ec6fc8abc82404b7d84f5cb727d090b9cc875 /regex_internal.h | |
parent | 2c30183a9c77b980b788ec1b52fe46ce34ed12c7 (diff) | |
parent | 09ca6ca91db4fd691c4107419c5a4d3f99ae569e (diff) | |
download | egawk-971bacc9db2ca88295108fb1e58f3d359ab2c842.tar.gz egawk-971bacc9db2ca88295108fb1e58f3d359ab2c842.tar.bz2 egawk-971bacc9db2ca88295108fb1e58f3d359ab2c842.zip |
Merge branch 'gawk-4.1-stable'
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); } |