summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-11 13:03:43 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-11 15:49:50 -0700
commit27ed16072f3b49b07e0af495fed10f883de90c82 (patch)
tree0bcf4d939c586bb0776407eafbfc3f404c542a94 /parse-xml.c
parent0c4e1697db2d9e15a05bc76056fca13e9ccb9ba4 (diff)
downloadsubsurface-27ed16072f3b49b07e0af495fed10f883de90c82.tar.gz
Call an LP85 an LP85 even when it's "10% extra".
The LP85+ name is not something we'd normally want to recognize. The LP cylinder names all tend to be by the "+" pressure anyway, and that's what we do in the equipment handling naming. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r--parse-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c
index 91bcced6e..8e64b1e21 100644
--- a/parse-xml.c
+++ b/parse-xml.c
@@ -1034,7 +1034,7 @@ static void match_standard_cylinder(cylinder_type_t *type)
fmt = "LP%d";
break;
case 2600 ... 2700: /* 2640 psi: LP+10% */
- fmt = "LP%d+";
+ fmt = "LP%d";
break;
case 2900 ... 3100: /* 3000 psi: ALx tank */
fmt = "AL%d";