diff options
Diffstat (limited to 'utils/cec-ctl')
-rw-r--r-- | utils/cec-ctl/cec-ctl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/cec-ctl/cec-ctl.cpp b/utils/cec-ctl/cec-ctl.cpp index a3b537b4..07ab5a72 100644 --- a/utils/cec-ctl/cec-ctl.cpp +++ b/utils/cec-ctl/cec-ctl.cpp @@ -1811,7 +1811,6 @@ int main(int argc, char **argv) device = newdev; } break; - case OptWallClock: case OptVerbose: verbose = true; break; @@ -2161,6 +2160,9 @@ int main(int argc, char **argv) return 0; } + if (options[OptWallClock] && !options[OptMonitorPin]) + verbose = true; + if (store_pin && !strcmp(store_pin, "-")) options[OptSkipInfo] = 1; |