aboutsummaryrefslogtreecommitdiff
path: root/src/render_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-01-10 16:36:39 +0100
committerThomas White <taw@physics.org>2013-01-10 16:36:39 +0100
commit271e3810442cca7ba43f1aee775c36180781372a (patch)
tree5852fcb9a6bf92915e049b0b26ee8c6d4d64ab4b /src/render_hkl.c
parenta64d5b1492a7eda72f3ff1162742f6c2aed21410 (diff)
Handle '?' return value from getopt_long()
Diffstat (limited to 'src/render_hkl.c')
-rw-r--r--src/render_hkl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/render_hkl.c b/src/render_hkl.c
index dbcdba43..142438e7 100644
--- a/src/render_hkl.c
+++ b/src/render_hkl.c
@@ -704,6 +704,9 @@ int main(int argc, char *argv[])
case 0 :
break;
+ case '?' :
+ break;
+
default :
ERROR("Unhandled option '%c'\n", c);
break;