vty/tdef_vty.c: drop redundant comparison

The amount of arguments is already being checked a few lines before:

  /* If any arguments are missing, redirect to 'show' */
  if (argc < 3)
    return show_timer(self, vty, argc, argv);

so we cannot reach the expression NULL inside this statement:

  group_arg = argc > 0 ? argv[0] : NULL;

Change-Id: Ice59d1a46c2080cd02060e3410706c502db4ce0b
Fixes: CID#190873 Logically dead code (DEADCODE)
diff --git a/src/vty/tdef_vty.c b/src/vty/tdef_vty.c
index 04c14b9..28de21a 100644
--- a/src/vty/tdef_vty.c
+++ b/src/vty/tdef_vty.c
@@ -287,7 +287,7 @@
 		return show_timer(self, vty, argc, argv);
 
 	/* If all arguments are passed, this is configuring a timer. */
-	group_arg = argc > 0 ? argv[0] : NULL;
+	group_arg = argv[0];
 	timer_args = argv + 1;
 	osmo_tdef_groups_for_each(g, global_tdef_groups) {
 		if (strcmp(g->name, group_arg))