Skip to content

Commit e1f9665

Browse files
committed
Fix a typo in the strtoi test
https://reviews.llvm.org/D54702 llvm-svn: 348683
1 parent 3ac7a15 commit e1f9665

File tree

1 file changed

+2
-2
lines changed
  • compiler-rt/test/sanitizer_common/TestCases/NetBSD

1 file changed

+2
-2
lines changed

compiler-rt/test/sanitizer_common/TestCases/NetBSD/strtoi.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ int main(void) {
3434
// CHECK: strtoi
3535
// CHECK: strtoi: conversion of '100' to a number successful, using 100, p=0
3636
// CHECK: strtoi: conversion of '100' to a number failed, using 10, p=0
37-
// CHECK: strtoi: conversion of '100xyz' to a number failed, using 10, p=0x78
37+
// CHECK: strtoi: conversion of '100xyz' to a number failed, using 100, p=0x78
3838
// CHECK: strtou: conversion of '100' to a number successful, using 100, p=0
3939
// CHECK: strtou: conversion of '100' to a number failed, using 10, p=0
40-
// CHECK: strtou: conversion of '100xyz' to a number failed, using 10, p=0x78
40+
// CHECK: strtou: conversion of '100xyz' to a number failed, using 100, p=0x78
4141

4242
return 0;
4343
}

0 commit comments

Comments
 (0)