[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: gnetlist.c
User: danmc
Date: 05/02/20 22:09:09
Modified: . gnetlist.c
Log:
fix some format string/type mismatch bugs
Revision Changes Path
1.47 +4 -4 eda/geda/devel/gnetlist/src/gnetlist.c
(In the diff below, changes in quantity of whitespace are not shown.)
Index: gnetlist.c
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gnetlist/src/gnetlist.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -b -r1.46 -r1.47
--- gnetlist.c 20 Feb 2005 17:09:52 -0000 1.46
+++ gnetlist.c 21 Feb 2005 03:09:08 -0000 1.47
@@ -214,10 +214,10 @@
while (list_pnt) {
if (g_read_file(list_pnt->data) != -1) {
s_log_message("Read scm file [%s]\n",
- list_pnt->data);
+ (char *) list_pnt->data);
} else {
s_log_message("Failed to read scm file [%s]\n",
- list_pnt->data);
+ (char *) list_pnt->data);
fprintf(stderr, "Failed to read scm file [%s]\n",
(char *) list_pnt->data);
}
@@ -250,10 +250,10 @@
while (list_pnt) {
if (g_read_file(list_pnt->data) != -1) {
s_log_message("Read scm file [%s]\n",
- list_pnt->data);
+ (char *) list_pnt->data);
} else {
s_log_message("Failed to read scm file [%s]\n",
- list_pnt->data);
+ (char *) list_pnt->data);
fprintf(stderr, "Failed to read scm file [%s]\n",
(char *) list_pnt->data);
}