diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-09-09 12:08:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-09 12:08:03 -0400 |
commit | 1eea7a68ed1534493ba2def4e2086fe8d9046e74 (patch) | |
tree | 78ba32b339f277905414f1618e492745a27568ef /changes | |
parent | 409a56281eda6e0f39ecb1a2737eb4ab39b0229b (diff) | |
download | tor-1eea7a68ed1534493ba2def4e2086fe8d9046e74.tar.gz tor-1eea7a68ed1534493ba2def4e2086fe8d9046e74.zip |
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]
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug13102 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changes/bug13102 b/changes/bug13102 new file mode 100644 index 0000000000..f66d38cd83 --- /dev/null +++ b/changes/bug13102 @@ -0,0 +1,2 @@ + o Code refactoring: + - Use the standard macro name SIZE_MAX, instead of our own SIZE_T_MAX. |