seems that having padfstring receiving unsigned int fixes gfortran x64 problem

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@9027 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2014-10-31 04:54:01 +00:00
parent e7eacdd09c
commit bb774d3e77
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ f2cstring(char* fstring, size_t len)
}
void
padfstring(char *dest, const char *src, size_t len)
padfstring(char *dest, const char *src, unsigned int len)
{
size_t sofar;

View File

@ -153,5 +153,5 @@ extern "C" {
#if defined(__cplusplus)
}
#endif
void padfstring(char *dest, const char *src, size_t len);
void padfstring(char *dest, const char *src, unsigned int len);
#endif /* __FWRAP__H */