summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorjohannes <johannes.herman@gmail.com>2024-02-07 15:47:55 +0100
committerjohannes <johannes.herman@gmail.com>2024-02-07 15:47:55 +0100
commita883cabd1df1f440a027d1f936bbebe5a71dba36 (patch)
treeb2bbe0ea32947d0e969255e43ac3af86256b44e6 /inc
parentab6cb49b0b875b5c27510dc57fe3767bfd074dae (diff)
changed read int to take char ** instead of unsigned char **
Diffstat (limited to 'inc')
-rw-r--r--inc/pack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/pack.h b/inc/pack.h
index 49e581c..0979877 100644
--- a/inc/pack.h
+++ b/inc/pack.h
@@ -11,7 +11,7 @@ void tobigendian(const int in, unsigned char out[4]);
/* reads a teeworlds packed int from given buffer */
/* the given pointer is incremented */
-int readint(unsigned char **cp);
+int readint(char **cp);
/* writes given int to teeworlds packed */
/* the given pointer is incremented */