Skip to content

Commit

Permalink
repair C code bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jszxpan committed Sep 12, 2017
1 parent a310b28 commit 4f1b1ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/set-watchpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
int main(int argc, char* argv[])
{
pthread_t t1;
char thread_name[] = "Thread 1";
pthread_create(&t1, NULL, thread1_func, thread_name);
pthread_create(&t1, NULL, thread1_func, NULL);

sleep(1000);
return 0;
Expand Down

0 comments on commit 4f1b1ac

Please sign in to comment.