Browse Source

can't use C comments in C comments - DUH

Stewart Smith 15 years ago
parent
commit
9dc47071c0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ccan/daemon-with-notify/_info

+ 2 - 2
ccan/daemon-with-notify/_info

@@ -37,9 +37,9 @@
  *			} else
  *				usage(argv[1]);
  *		}
- *		sleep(10); /* do some init here */
+ *		sleep(10); // do some init here
  *		daemon_is_ready();
- *		sleep(20); /* will be done in child, detached from parent */
+ *		sleep(20); // will be done in child, detached from parent
  *		exit(0);
  *	}
  *