diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-06-03 00:10:39 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-03 00:10:39 -0700 |
commit | b249370ffec79785b8dd7454e94300f1c793d39f (patch) | |
tree | a0ef81bb623b2ce49904e05ff4f487a32a9c6cc5 /dive.c | |
parent | dbdff1c0afe958c00cae9344ba50fe31e43b243d (diff) | |
download | subsurface-b249370ffec79785b8dd7454e94300f1c793d39f.tar.gz |
Not all C compilers like uint
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2282,9 +2282,9 @@ void dive_add_picture(struct dive *d, struct picture *picture) return; } -uint dive_get_picture_count(struct dive *d) +unsigned int dive_get_picture_count(struct dive *d) { - uint i = 0; + unsigned int i = 0; FOR_EACH_PICTURE( d ) i++; return i; |