diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-04 14:29:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-04 14:56:01 -0700 |
commit | e58fa7b9b506d5bb30268060279bc8dcbbeb99ea (patch) | |
tree | ea16fc6e563c1b802435430c6e0c67d3b0f5ee5f /dive.h | |
parent | e007e7005316f7ce5c54dcb84d0ea7cbd30635de (diff) | |
download | subsurface-e58fa7b9b506d5bb30268060279bc8dcbbeb99ea.tar.gz |
Parse uemis cylinder data
This is some seriously crazy stuff. Instead of making sense as a
divelog, the uemis xml makes more sense as a "dive computer settings
dump".
And I guess I can see why they'd do that. But it makes parsing it just
incredibly annoying. The thing is more of a "these are the
configurations I support as a dive computer thing" than a "this was the
tank you were diving with".
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ struct sample { int cylinderindex; }; -#define MAX_CYLINDERS (4) +#define MAX_CYLINDERS (8) struct dive { time_t when; |