summaryrefslogtreecommitdiffstats
path: root/tester/covoar/coverage_converter.cc
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2021-04-06 15:24:08 -0500
committerJoel Sherrill <joel@rtems.org>2021-04-06 15:24:08 -0500
commitfcef37b720a2a2f3d20787b89c72e8f5c2f4e4c2 (patch)
tree8d6e9b8d9ff0922d7a5ac404b082f150d83ed989 /tester/covoar/coverage_converter.cc
parentcoverage.py: Call covoar once (diff)
downloadrtems-tools-fcef37b720a2a2f3d20787b89c72e8f5c2f4e4c2.tar.bz2
covoar: Remove training white spaces
Diffstat (limited to 'tester/covoar/coverage_converter.cc')
-rw-r--r--tester/covoar/coverage_converter.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tester/covoar/coverage_converter.cc b/tester/covoar/coverage_converter.cc
index 8144d93..e972d83 100644
--- a/tester/covoar/coverage_converter.cc
+++ b/tester/covoar/coverage_converter.cc
@@ -51,13 +51,13 @@ bool stringToUint32(
result = strtoll( s, NULL, base );
if ((result == 0) && errno)
- return false;
+ return false;
if ((result == LLONG_MAX) && (errno == ERANGE))
- return false;
+ return false;
if ((result == LLONG_MIN) && (errno == ERANGE))
- return false;
+ return false;
*n = (uint32_t)result;
return true;
@@ -113,7 +113,7 @@ int main(
exit(-1);
}
break;
- case 'h':
+ case 'h':
if (!stringToUint32( optarg, 16, &highAddress )) {
fprintf( stderr, "ERROR: High address is not a hexadecimal number\n" );
usage();