summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-11-02 12:29:42 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-11-02 12:29:42 +0100
commitf9c29777769e9fb7d95859c6d7e2ca44b8f32152 (patch)
tree9bc1aec6ce69992d37319e90c982e5f7c0c57c29 /bin
parentb6431a9d38e65b3eb7d2e0e8bcb10ebcf8be0ef5 (diff)
Remove unused --path option from ufo-runjson
Diffstat (limited to 'bin')
-rw-r--r--bin/ufo-runjson.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/ufo-runjson.c b/bin/ufo-runjson.c
index db45adb..f6bf419 100644
--- a/bin/ufo-runjson.c
+++ b/bin/ufo-runjson.c
@@ -183,13 +183,10 @@ int main(int argc, char *argv[])
{
GOptionContext *context;
GError *error = NULL;
- gchar **paths = NULL;
gchar **addresses = NULL;
gboolean show_version = FALSE;
GOptionEntry entries[] = {
- { "path", 'p', 0, G_OPTION_ARG_STRING_ARRAY, &paths,
- "Path to node plugins or OpenCL kernels", NULL },
#ifndef WITH_MPI
{ "address", 'a', 0, G_OPTION_ARG_STRING_ARRAY, &addresses,
"Address of remote server running `ufod'", NULL },
@@ -251,7 +248,6 @@ int main(int argc, char *argv[])
}
#endif
- g_strfreev (paths);
g_strfreev (addresses);
g_option_context_free (context);