diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-06-03 11:59:20 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2016-06-03 11:59:20 +0200 |
commit | b1924292b42a5084c5269cda908601495be2451f (patch) | |
tree | 97a60bd58ae56e8365ff9d24cad0ddb1d6aae645 /bin | |
parent | 2b078db1471e24d0182fa63fedb5fba9ec744e7d (diff) | |
download | uca-b1924292b42a5084c5269cda908601495be2451f.tar.gz uca-b1924292b42a5084c5269cda908601495be2451f.tar.bz2 uca-b1924292b42a5084c5269cda908601495be2451f.tar.xz uca-b1924292b42a5084c5269cda908601495be2451f.zip |
info: do not list property if name not given
Diffstat (limited to 'bin')
-rw-r--r-- | bin/tools/info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/tools/info.c b/bin/tools/info.c index b2ac0c8..42e73f0 100644 --- a/bin/tools/info.c +++ b/bin/tools/info.c @@ -100,8 +100,8 @@ int main(int argc, char *argv[]) manager = uca_plugin_manager_new (); if (argc < 2) { - name = g_strdup ("Basic camera"); - camera = g_object_new (UCA_TYPE_CAMERA, NULL); + print_usage(); + return 0; } else { name = argv[1]; |