[padb-devel] [padb] r298 committed - Patch from Jeff Squyres, compile cleanly in 64 bit platforms.

padb at googlecode.com padb at googlecode.com
Fri Oct 23 18:44:01 BST 2009


Revision: 298
Author: apittman
Date: Fri Oct 23 10:43:31 2009
Log: Patch from Jeff Squyres, compile cleanly in 64 bit platforms.

http://code.google.com/p/padb/source/detail?r=298

Modified:
  /trunk/src/minfo.c

=======================================
--- /trunk/src/minfo.c	Thu Oct 15 06:30:47 2009
+++ /trunk/src/minfo.c	Fri Oct 23 10:43:31 2009
@@ -32,7 +32,7 @@
  void show_string (char *desc, char *str)
  {
      printf("zzz: str:%d %s\n%s\n",
-	   strlen(str),
+	   (int) strlen(str),
  	   desc,
  	   str);
  }
@@ -345,7 +345,7 @@

      printf("out: c:%d str:%d name\n%s\n",
  	   c,
-	   strlen(comm->name),
+	   (int) strlen(comm->name),
  	   comm->name);

      printf("out: c:%d id:%ld\n",




More information about the padb-devel mailing list