aboutsummaryrefslogtreecommitdiff
path: root/astro/gpsbabel
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2017-01-24 16:38:22 +0000
committerJan Beich <jbeich@FreeBSD.org>2017-01-24 16:38:22 +0000
commit986f10e809772966558d27a5ff97221fb7712b5d (patch)
treef04f12464d045cf87af45a02f7179d9371a0fe20 /astro/gpsbabel
parentcf4a4aea1056690d1719e15c7d23e32e27edd757 (diff)
Notes
Diffstat (limited to 'astro/gpsbabel')
-rw-r--r--astro/gpsbabel/files/patch-bushnell.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/astro/gpsbabel/files/patch-bushnell.cc b/astro/gpsbabel/files/patch-bushnell.cc
new file mode 100644
index 000000000000..4bb12c1f308a
--- /dev/null
+++ b/astro/gpsbabel/files/patch-bushnell.cc
@@ -0,0 +1,22 @@
+https://github.com/gpsbabel/gpsbabel/issues/62
+
+--- bushnell.cc.orig 2017-01-24 13:08:41 UTC
++++ bushnell.cc
+@@ -135,7 +135,7 @@ bushnell_get_icon_from_name(QString name
+ name = "Waypoint";
+ }
+
+- for (t = bushnell_icons; t->icon > 0; t++) {
++ for (t = bushnell_icons; t->icon != NULL; t++) {
+ if (0 == name.compare(t->icon, Qt::CaseInsensitive)) {
+ return t->symbol;
+ }
+@@ -147,7 +147,7 @@ static const char*
+ bushnell_get_name_from_symbol(signed int s)
+ {
+ icon_mapping_t* t;
+- for (t = bushnell_icons; t->icon > 0; t++) {
++ for (t = bushnell_icons; t->icon != NULL; t++) {
+ if (s == t->symbol) {
+ return t->icon;
+ }