aboutsummaryrefslogtreecommitdiffstats
path: root/regex_internal.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:02:29 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-16 18:02:29 +0300
commit6f250fa2a01864e07c1e9022f36eab740a2793c5 (patch)
treee77711678bef18e003b614f3c7e3e6c222bb23b4 /regex_internal.h
parent340c6b9945fcf57666648939bb8702a6f64c8e8e (diff)
parentaaa85643b352f867cfe7198f313b4481ad1f544d (diff)
downloadegawk-6f250fa2a01864e07c1e9022f36eab740a2793c5.tar.gz
egawk-6f250fa2a01864e07c1e9022f36eab740a2793c5.tar.bz2
egawk-6f250fa2a01864e07c1e9022f36eab740a2793c5.zip
Merge branch 'master' into feature/regex-type
Diffstat (limited to 'regex_internal.h')
-rw-r--r--regex_internal.h4
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);
}