diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2014-08-27 09:58:33 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2014-08-27 09:58:33 +0000 |
commit | b868c05ec91a7ee193010a421de768a3b1a80952 (patch) | |
tree | 4f015f16bcafefd46d221730599e94d22870d1f5 /stdlib/header.c | |
parent | cbfe627f925ab2bab93bae7a7bc9f6ee6afb8637 (diff) |
PR#6517: use ISO C99 types {,u}int{32,64}_t in preference to our homegrown
types {,u}int{32,64}.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@15131 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/header.c')
-rw-r--r-- | stdlib/header.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/header.c b/stdlib/header.c index cb3d9953a..93cdfeb2d 100644 --- a/stdlib/header.c +++ b/stdlib/header.c @@ -133,7 +133,7 @@ static char * read_runtime_path(int fd) char buffer[TRAILER_SIZE]; static char runtime_path[MAXPATHLEN]; int num_sections, i; - uint32 path_size; + uint32_t path_size; long ofs; lseek(fd, (long) -TRAILER_SIZE, SEEK_END); |