summaryrefslogtreecommitdiff
path: root/mkprecompiled.c
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2008-02-13 10:20:37 -0800
committerAaron Plattner <aplattner@nvidia.com>2008-02-13 10:20:37 -0800
commita99e5e558fc9e279eeee2b76187766ac1dde19cf (patch)
tree2b51e4e723ea77efb29c50a65af708c64fe77381 /mkprecompiled.c
parent919fc87075a0b604d316b7d91fca592eba64829e (diff)
1.0-81741.0-8174
Diffstat (limited to 'mkprecompiled.c')
-rw-r--r--mkprecompiled.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkprecompiled.c b/mkprecompiled.c
index f9a68ed..d81561d 100644
--- a/mkprecompiled.c
+++ b/mkprecompiled.c
@@ -449,7 +449,7 @@ void encode_uint32(uint32 val, uint8 data[4])
* bytes, and build a uint32.
*/
-uint32 decode_uint32(uint8 *buf)
+uint32 decode_uint32(char *buf)
{
uint32 ret = 0;
@@ -592,7 +592,7 @@ int pack(Options *op)
int unpack(Options *op)
{
int dst_fd, fd, ret, offset, len = 0;
- uint8 *buf, *dst;
+ char *buf, *dst;
uint32 crc, major, minor, patch, val, size;
char *description, *proc_version_string;