r5463 - trunk/eda/fped

werner at docs.openmoko.org werner at docs.openmoko.org
Sun Aug 16 14:24:04 CEST 2009


Author: werner
Date: 2009-08-16 14:24:03 +0200 (Sun, 16 Aug 2009)
New Revision: 5463

Modified:
   trunk/eda/fped/kicad.c
Log:
- ctime(3) already provides a newline, so don't add an extra one to the .mod 
  file, possibly confusing KiCad



Modified: trunk/eda/fped/kicad.c
===================================================================
--- trunk/eda/fped/kicad.c	2009-08-16 12:04:01 UTC (rev 5462)
+++ trunk/eda/fped/kicad.c	2009-08-16 12:24:03 UTC (rev 5463)
@@ -273,7 +273,7 @@
 {
 	time_t now = time(NULL);
 
-	fprintf(file, "PCBNEW-LibModule-V1 %s\n", ctime(&now));
+	fprintf(file, "PCBNEW-LibModule-V1 %s", ctime(&now));
 
 	fprintf(file, "$INDEX\n");
 	fprintf(file, "%s\n", part_name);




More information about the commitlog mailing list