diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-12 09:47:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-12 09:47:55 -0700 |
commit | afffcdbc0d6402e3dfee421f86938b98e12fb550 (patch) | |
tree | 79eeb629b241edf558059d94e87455ee37b5c425 /parse-xml.c | |
parent | 9cb60c910681b0fb3c04d22c77bcf9c2754bfa7f (diff) | |
download | subsurface-afffcdbc0d6402e3dfee421f86938b98e12fb550.tar.gz |
Avoid using type 'gasmix_t': use 'struct gasmix' instead
libdivecomputer already uses 'gasmix_t' for its own gasmix thing. I
don't like th eway we step on each others name spaces, but hey, might as
well just use 'struct gasmix' and avoid the typedef.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r-- | parse-xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c index e14d9db2b..d17f7a8ee 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -998,7 +998,7 @@ static void dive_start(void) memset(&tm, 0, sizeof(tm)); } -static void sanitize_gasmix(gasmix_t *mix) +static void sanitize_gasmix(struct gasmix *mix) { unsigned int o2, he; |