~pcherenkov/udpxy/udpxy-github

« back to all changes in this revision

Viewing changes to chipmunk/mkpg.c

  • Committer: Pavel Cherenkov
  • Date: 2014-06-10 05:35:37 UTC
  • Revision ID: git-v1:ac093487867fc3752df8a74854a73bfbf3487842
[fixes] Restored -Wall --pedantic in make-builds; corrected misc petty issues building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
 
98
98
            if (n > max_cli_mem)
99
99
                max_cli_mem = n;
100
 
            if (client->tail && strlen(client->tail) > max_cli_tail)
 
100
            if (client->tail && (ssize_t)strlen(client->tail) > max_cli_tail)
101
101
                max_cli_tail = strlen(client->tail);
102
102
 
103
103
            total += n;