Use S?SIZE_MAX, not S?SIZE_T_MAX

This fixes bug 13102 (not on any released Tor) where using the
standard SSIZE_MAX name broke mingw64, and we didn't realize.

I did this with
   perl -i -pe 's/SIZE_T_MAX/SIZE_MAX/' src/*/*.[ch] src/*/*/*.[ch]
This commit is contained in:
Nick Mathewson
2014-09-09 12:08:03 -04:00
parent 409a56281e
commit 1eea7a68ed
5 changed files with 21 additions and 19 deletions
+2
View File
@@ -0,0 +1,2 @@
o Code refactoring:
- Use the standard macro name SIZE_MAX, instead of our own SIZE_T_MAX.