From a9cbabaeb1e00e8b172bae3f7ba546828af2802b Mon Sep 17 00:00:00 2001 From: Jerven Bolleman Date: Fri, 5 Aug 2016 15:16:27 +0200 Subject: Untested change to count option of rapper to count in longs instead of ints --- utils/rapper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/rapper.c b/utils/rapper.c index d2cdf857..03b163fc 100644 --- a/utils/rapper.c +++ b/utils/rapper.c @@ -76,7 +76,7 @@ static int quiet = 0; /* just count, no printing */ static int count = 0; -static int triple_count = 0; +static long triple_count = 0; static raptor_serializer* serializer = NULL; @@ -940,7 +940,7 @@ main(int argc, char *argv[]) fprintf(stderr, "%s: Parsing returned 1 triple\n", program); else - fprintf(stderr, "%s: Parsing returned %d triples\n", + fprintf(stderr, "%s: Parsing returned %ld triples\n", program, triple_count); } -- cgit v1.2.1