This commit is contained in:
Michael Kerrisk 2007-04-03 17:54:06 +00:00
parent f5ff0796af
commit 73bc9ed661
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ int main() {
if (ret < 0)
perror("rtime error");
else
printf("%s", ctime((time_t *) &time1.tv_sec));
printf("%s\\n", ctime((time_t *) &time1.tv_sec));
return 0;
}