diff options
author | Christophe Fergeau | 2009-11-01 22:16:45 +0100 |
---|---|---|
committer | Matt Colyer | 2009-11-05 20:45:40 -0800 |
commit | 94f77f6a4dbea03a1bca8aa55097638927591a5a (patch) | |
tree | 41fbabe931eb0cf771eda5c66de2c56b36ab176b | |
parent | 6147eb07bf00770bd5bb09ae905342f0117ff502 (diff) | |
download | libimobiledevice-94f77f6a4dbea03a1bca8aa55097638927591a5a.tar.gz libimobiledevice-94f77f6a4dbea03a1bca8aa55097638927591a5a.tar.bz2 |
MAXIMUM_PACKET_SIZE should be static
-rw-r--r-- | src/AFC.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ #include "utils.h" // This is the maximum size an AFC data packet can be -const int MAXIMUM_PACKET_SIZE = (2 << 15); +static const int MAXIMUM_PACKET_SIZE = (2 << 15); /** Locks an AFC client, done for thread safety stuff * |