From b7d1b8f9c3167ffdea531d77ac4c60c235a13613 Mon Sep 17 00:00:00 2001 From: ballen4705 <ballen4705@4ea69e1a-61f1-4043-bf83-b5c94c648137> Date: Wed, 16 Oct 2002 13:21:06 +0000 Subject: [PATCH] Removed extraneous spaces from the start of some printf(" ERROR...") statements git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@58 4ea69e1a-61f1-4043-bf83-b5c94c648137 --- sm5/ataprint.c | 12 ++++++------ sm5/ataprint.cpp | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sm5/ataprint.c b/sm5/ataprint.c index 3932c76e0..79b399230 100644 --- a/sm5/ataprint.c +++ b/sm5/ataprint.c @@ -1,4 +1,4 @@ -// $Id: ataprint.c,v 1.10 2002/10/15 14:24:26 ballen4705 Exp $ +// $Id: ataprint.c,v 1.11 2002/10/16 13:21:06 ballen4705 Exp $ /* * ataprint.c * @@ -936,7 +936,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } @@ -959,7 +959,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } @@ -983,7 +983,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } @@ -1006,7 +1006,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support self test function\n"); + printf ("ERROR: device does not support self test function\n"); exit(-1); } @@ -1027,7 +1027,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } diff --git a/sm5/ataprint.cpp b/sm5/ataprint.cpp index 0979cd77b..2a33860ab 100644 --- a/sm5/ataprint.cpp +++ b/sm5/ataprint.cpp @@ -1,4 +1,4 @@ -// $Id: ataprint.cpp,v 1.10 2002/10/15 14:24:26 ballen4705 Exp $ +// $Id: ataprint.cpp,v 1.11 2002/10/16 13:21:06 ballen4705 Exp $ /* * ataprint.c * @@ -936,7 +936,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } @@ -959,7 +959,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } @@ -983,7 +983,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } @@ -1006,7 +1006,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support self test function\n"); + printf ("ERROR: device does not support self test function\n"); exit(-1); } @@ -1027,7 +1027,7 @@ void ataPrintMain ( int fd ) { if ( ! isSupportSelfTest(smartval) ) { - printf (" ERROR: device does not support Self-Test function\n"); + printf ("ERROR: device does not support Self-Test function\n"); exit(-1); } -- GitLab