Skip to content

Commit 5f1271d

Browse files
committed
Fix initial remarks by Wouter
1 parent 309cd51 commit 5f1271d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile.in

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
WESTMERE = @HAVE_WESTMERE@
99
HASWELL = @HAVE_HASWELL@
1010

11+
CC = @CC@
1112
CPPFLAGS = @CPPFLAGS@ -I./include -I./src -I.
1213
CFLAGS = @CFLAGS@
1314

doc/manual/getting_started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Next we define a ``main`` function that's called on execution of the program.
131131
exit(EXIT_FAILURE);
132132
}
133133
134-
printf("parsed %zu records in %s", zone->record_count, argv[1]);
134+
printf("parsed %zu records in %s", zone->count, argv[1]);
135135
136136
return 0;
137137
}

0 commit comments

Comments
 (0)