diff options
author | 2024-02-10 07:38:40 -0500 | |
---|---|---|
committer | 2024-02-10 07:48:27 -0500 | |
commit | 94eaa918fc76dc3e2a472e1530706d5dd8d1ac5c (patch) | |
tree | 2d85643b5b1cde77f7864a7c1ba181366b450066 /src/tools/floptool.cpp | |
parent | 0def9d44ccf3cda3d5ce4dba50bb7ca709e84d1d (diff) |
formats/fs_fat.cpp: Various fixes
- Get the volume label from the root directory, rather than from the extended BPB (which is less reliable)
- Ignore long file name entries for now
* floptool: Add new line to error message report
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r-- | src/tools/floptool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp index ba573e0a0cd..f07713eef53 100644 --- a/src/tools/floptool.cpp +++ b/src/tools/floptool.cpp @@ -725,7 +725,7 @@ int CLIB_DECL main(int argc, char *argv[]) return 1; } } catch(const std::exception &err) { - fprintf(stderr, "Error: %s", err.what()); + fprintf(stderr, "Error: %s\n", err.what()); return 1; } } |