summaryrefslogtreecommitdiffstats
path: root/src/AFC.c
diff options
context:
space:
mode:
authorGravatar Christophe Fergeau2009-11-01 22:16:45 +0100
committerGravatar Matt Colyer2009-11-05 20:45:40 -0800
commit94f77f6a4dbea03a1bca8aa55097638927591a5a (patch)
tree41fbabe931eb0cf771eda5c66de2c56b36ab176b /src/AFC.c
parent6147eb07bf00770bd5bb09ae905342f0117ff502 (diff)
downloadlibimobiledevice-94f77f6a4dbea03a1bca8aa55097638927591a5a.tar.gz
libimobiledevice-94f77f6a4dbea03a1bca8aa55097638927591a5a.tar.bz2
MAXIMUM_PACKET_SIZE should be static
Diffstat (limited to 'src/AFC.c')
-rw-r--r--src/AFC.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AFC.c b/src/AFC.c
index a2edae7..0a24a15 100644
--- a/src/AFC.c
+++ b/src/AFC.c
@@ -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
*