Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 174874
b: refs/heads/master
c: 59d309f
h: refs/heads/master
v: v3
  • Loading branch information
Geert Uytterhoeven authored and Jason Wessel committed Dec 11, 2009
1 parent a82c04f commit 27b5ec9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b4f1b67be99d6eda8f2f252460905858ace871ef
refs/heads/master: 59d309f9c8ef0bd01bf93cc0e758f1d810417bdb
8 changes: 4 additions & 4 deletions trunk/drivers/misc/kgdbts.c
Original file line number Diff line number Diff line change
Expand Up @@ -891,16 +891,16 @@ static void kgdbts_run_tests(void)
int nmi_sleep = 0;
int i;

ptr = strstr(config, "F");
ptr = strchr(config, 'F');
if (ptr)
fork_test = simple_strtol(ptr + 1, NULL, 10);
ptr = strstr(config, "S");
ptr = strchr(config, 'S');
if (ptr)
do_sys_open_test = simple_strtol(ptr + 1, NULL, 10);
ptr = strstr(config, "N");
ptr = strchr(config, 'N');
if (ptr)
nmi_sleep = simple_strtol(ptr+1, NULL, 10);
ptr = strstr(config, "I");
ptr = strchr(config, 'I');
if (ptr)
sstep_test = simple_strtol(ptr+1, NULL, 10);

Expand Down

0 comments on commit 27b5ec9

Please sign in to comment.