aboutsummaryrefslogtreecommitdiffstats
path: root/ext2ed/init.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2005-12-09 19:16:40 -0500
committerTheodore Ts'o <tytso@mit.edu>2005-12-09 19:16:40 -0500
commit598ff01414fc01bc12be69c0fa1e852c4a93864d (patch)
tree0db3b094d2daa8f0d240eab96ebe5c8b269e132b /ext2ed/init.c
parentfb733f8efd04477f0be5b2108156265b333baaca (diff)
downloadandroid_external_e2fsprogs-598ff01414fc01bc12be69c0fa1e852c4a93864d.tar.gz
android_external_e2fsprogs-598ff01414fc01bc12be69c0fa1e852c4a93864d.tar.bz2
android_external_e2fsprogs-598ff01414fc01bc12be69c0fa1e852c4a93864d.zip
Fix bogus spaces before '!' and '?' characters in unused programs.
On Mon, Oct 31, 2005 at 01:23:53PM +0000, Martin Michlmayr wrote: > Package: e2fsprogs > Version: 1.38-2 > Severity: minor > > e2fsprogs isn't consistent in its use of spaces before an exclamation > mark. The patch below fixed this by removing some spaces. > (Interestingly, I couldn't find the error message in the sources where > I noticed this inconsistency, namely "group descriptors corrupted !"). Patch applied, but none of the source files you touched are actually compiled in e2fsprogs, and most of them weren't written by me. :-) Addresses Debian Bug #336604 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'ext2ed/init.c')
-rw-r--r--ext2ed/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2ed/init.c b/ext2ed/init.c
index de504b41..f89d8934 100644
--- a/ext2ed/init.c
+++ b/ext2ed/init.c
@@ -476,7 +476,7 @@ void signal_SIGSEGV_handler (int sig_num)
{
prepare_to_close ();
- printf ("Killed by signal %d !\n",sig_num);
+ printf ("Killed by signal %d!\n",sig_num);
exit (1);
}