diff options
Diffstat (limited to 'cyclone/hammer/anal.c')
-rw-r--r-- | cyclone/hammer/anal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/hammer/anal.c b/cyclone/hammer/anal.c index 477eb20..374fa17 100644 --- a/cyclone/hammer/anal.c +++ b/cyclone/hammer/anal.c @@ -76,7 +76,7 @@ static void *anal_new(t_floatarg f) else if (size > ANAL_MAXSIZE) { /* CHECKED: */ - loud_warning(&anal_class, "size too large, using %d", ANAL_MAXSIZE); + loud_warning(&anal_class, 0, "size too large, using %d", ANAL_MAXSIZE); size = ANAL_MAXSIZE; /* LATER switch into a 'sparse' mode */ } /* CHECKED: actually the bytesize is size * size * sizeof(short), |