From e0063a7b55800466bf2c301df00beea842106948 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 9 May 2017 14:05:30 -0500 Subject: [PATCH] Cleanup oxfstool format output --- src/ox/fs/oxfstool.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ox/fs/oxfstool.cpp b/src/ox/fs/oxfstool.cpp index 6fc9e5b6a..b96fad28b 100644 --- a/src/ox/fs/oxfstool.cpp +++ b/src/ox/fs/oxfstool.cpp @@ -128,9 +128,9 @@ int format(int argc, char **args) { delete []buff; if (err == 0) { - cerr << "Created file system of type " << type << " " << path << endl; - cerr << "\ttype " << type << endl; - cerr << "\twrote " << size << " bytes\n"; + cerr << "Created file system " << path << endl; + cerr << " type " << type << endl; + cerr << " wrote " << size << " bytes\n"; } } else { fprintf(stderr, "Insufficient arguments\n");