summaryrefslogtreecommitdiffstats
path: root/parse.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-30 14:36:34 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-30 14:36:34 -0700
commit4b3bd4b739bd7a89c5dd972fff726556b219aeb2 (patch)
tree2df4cf8efa518c1607e4d7961f44003937ffcd2a /parse.c
parent414565e000d24fe8b483294fbec64539e336bb4e (diff)
downloadsubsurface-4b3bd4b739bd7a89c5dd972fff726556b219aeb2.tar.gz
Fix stupid mis-initialization of current sample
.. nice compiler warning hidden by the crazy gcc pointer sign warnings that nobody wants to see (yes, we really do want to do 'strlen()' even on unsigned strings, don't complain, crazy bitch compiler). So this also makes our CFLAGS set -Wno-pointer-sign. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index bbe1a68ca..43bf82d86 100644
--- a/parse.c
+++ b/parse.c
@@ -185,7 +185,7 @@ static void sample_start(void)
if (!dive)
return;
}
- sample = dive->samples + nr;
+ sample = dive->sample + nr;
}
static void sample_end(void)