Bug 1151541, part 3 - Fix leading tabs in xpcom/. r=froydnj

This commit is contained in:
Andrew McCreight 2015-04-09 10:25:05 -07:00
parent e2c2eeb647
commit 2881daa7dd
3 changed files with 22 additions and 21 deletions

View File

@ -15,15 +15,16 @@ namespace TestCRT {
// The return from strcmp etc is only defined to be postive, zero or
// negative. The magnitude of a non-zero return is irrelevant.
int sign(int val) {
if (val == 0)
if (val == 0) {
return 0;
else {
if (val > 0)
} else {
if (val > 0) {
return 1;
else
} else {
return -1;
}
}
}
// Verify that nsCRT versions of string comparison routines get the