diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-13 11:49:29 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-13 11:49:29 -0400 |
| commit | 404651ee41ba9b4d5d753f0869998df37d83e4d0 (patch) | |
| tree | 0fdc0398e988387d879a226439f8c1d14b5953e5 /tools | |
| parent | 9839b47be3a43cd5b2cc058932921073c8d8d758 (diff) | |
Make assignment and value decl behaviour the same with long lines
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/odinfmt/snapshot/snapshot.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/odinfmt/snapshot/snapshot.odin b/tools/odinfmt/snapshot/snapshot.odin index 7f60897..3220845 100644 --- a/tools/odinfmt/snapshot/snapshot.odin +++ b/tools/odinfmt/snapshot/snapshot.odin @@ -106,7 +106,7 @@ snapshot_file :: proc(path: string) -> bool { } if s_ch != f_ch { - fmt.eprintf("\nFormatted file was different from snapshot file: %v", snapshot_path) + fmt.eprintf("\nFormatted file was different from snapshot file: %v\n", snapshot_path) os.write_entire_file(fmt.tprintf("%v_failed", snapshot_path), transmute([]u8)formatted) return false } |