Skip to content

Commit de6942e

Browse files
committed
Amend line count message in prepare command
Fixes #37
1 parent b98af12 commit de6942e

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)