Browse Source

Merge pull request #115 from leonardosnt/master

add missing \n
Marco Bambini 8 years ago
parent
commit
fc01176f6d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cli/gravity.c

+ 1 - 1
src/cli/gravity.c

@@ -186,7 +186,7 @@ int main (int argc, const char* argv[]) {
 		// load source code
 		// load source code
 		const char *source_code = file_read(input_file, &size);
 		const char *source_code = file_read(input_file, &size);
 		if (!source_code) {
 		if (!source_code) {
-			printf("Error loading file %s", input_file);
+			printf("Error loading file %s\n", input_file);
 			goto cleanup;
 			goto cleanup;
 		}
 		}