ports/x11-clocks/asclock-gtk/files/patch-config.c
Adam Weinberger 0ce9c970cf Rename x11-*/ patch-xy patches to reflect the files they modify.
Finally, this is the last of it.
2014-07-29 16:36:06 +00:00

19 lines
447 B
C

--- config.c~ Fri Mar 26 16:38:29 1999
+++ config.c Sat Jun 12 15:55:56 1999
@@ -52,14 +52,14 @@
fprintf(stderr, "dir : %s\n", *cpp);
if((dfd = opendir(*cpp)) == NULL)
- printf(" not found\n\n");
+ printf(" not found\n");
else {
while((dp = readdir(dfd)) != NULL)
if ( dp->d_name[0]!='.' )
printf("%s\n", dp->d_name);
closedir(dfd);
}
- printf("\n\n");
+ printf("\n");
}