Skip to content

Commit 8da15f6

Browse files
authored
Merge pull request #38 from saxbophone/josh/37
Amend line count message in prepare command
2 parents b98af12 + de6942e commit 8da15f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prepare.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ main(int argc, char * argv[]) {
6666
// will create
6767
printf(
6868
"File size is %zi bytes - This generates a spiral with %zi lines\n",
69-
read_file_size, read_file_size*8
69+
read_file_size, (read_file_size * 8) + 1
7070
);
7171
// allocate memory buffer
7272
buffer_t input = {

0 commit comments

Comments
 (0)