aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJosh Allen <axlecrusher@gmail.com>2017-02-12 15:23:57 -0500
committerJosh Allen <axlecrusher@gmail.com>2017-02-12 15:23:57 -0500
commitc339b84a145c6af24fe1ce40f4fee23cd88bce10 (patch)
tree4bf3b3af559968e44429b2a197939b1ba78c137e /tools
parentc2ca44be9f6408351cfe32e855b1472ec155b9b2 (diff)
downloadlibsurvive-c339b84a145c6af24fe1ce40f4fee23cd88bce10.tar.gz
libsurvive-c339b84a145c6af24fe1ce40f4fee23cd88bce10.tar.bz2
buffer does not need to be very large.
Diffstat (limited to 'tools')
-rw-r--r--tools/ootx_decode/ootx_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ootx_decode/ootx_decoder.c b/tools/ootx_decode/ootx_decoder.c
index f308bfb..003322f 100644
--- a/tools/ootx_decode/ootx_decoder.c
+++ b/tools/ootx_decode/ootx_decoder.c
@@ -13,7 +13,7 @@
//char* fmt_str = "L Y HMD %d 5 1 206230 %d\n";
-#define MAX_BUFF_SIZE 1024
+#define MAX_BUFF_SIZE 64
void (*ootx_packet_clbk)(ootx_packet* packet) = NULL;
void (*ootx_bad_crc_clbk)(ootx_packet* packet, uint32_t crc) = NULL;