diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-07 08:30:12 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-07 08:30:12 +0000 |
commit | f8569c130ccebb7b6cac1edfd9f28aae10c97400 (patch) | |
tree | c825dbf33062f46892026e426120d50035e0e703 /src/htsparse.c | |
parent | 1fb810430a71eea4c4148d84cb5bff91e1c8b66c (diff) |
Fixed warning
Diffstat (limited to 'src/htsparse.c')
-rw-r--r-- | src/htsparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htsparse.c b/src/htsparse.c index 1661e2b..3320886 100644 --- a/src/htsparse.c +++ b/src/htsparse.c @@ -85,7 +85,7 @@ Please visit our Website: http://www.httrack.com if (ht_buff==NULL) { \ printf("PANIC! : Not enough memory [%d]\n", __LINE__); \ XH_uninit; \ - abortLogFmt("not enough memory for current html document in HT_ADD_CHK : realloct("LLintP") failed" _ ht_size); \ + abortLogFmt("not enough memory for current html document in HT_ADD_CHK : realloct("LLintP") failed" _ (LLint) ht_size); \ abort(); \ } \ } \ @@ -138,7 +138,7 @@ Please visit our Website: http://www.httrack.com if (ht_buff==NULL) { \ printf("PANIC! : Not enough memory [%d]\n",__LINE__); \ XH_uninit; \ - abortLogFmt("not enough memory for current html document in HT_ADD_START : malloct("LLintP") failed" _ ht_size); \ + abortLogFmt("not enough memory for current html document in HT_ADD_START : malloct("LLintP") failed" _ (LLint) ht_size); \ abort(); \ } \ ht_buff[0]='\0'; \ |