diff options
author | William Douglas <william.douglas@intel.com> | 2012-05-24 14:46:18 -0700 |
---|---|---|
committer | William Douglas <william.douglas@intel.com> | 2012-05-24 14:46:27 -0700 |
commit | ae9b990d2834ef99fa1aebb70095dc7fcf3806dd (patch) | |
tree | a8d0aaee47d89619c4d64ed7b52bfce592301db6 | |
parent | dfbfb3b4f4c56115fae833434cc631e985769b8e (diff) | |
download | corewatcher-ae9b990d2834ef99fa1aebb70095dc7fcf3806dd.tar.gz corewatcher-ae9b990d2834ef99fa1aebb70095dc7fcf3806dd.tar.bz2 corewatcher-ae9b990d2834ef99fa1aebb70095dc7fcf3806dd.zip |
add short option check for test mode
Signed-off-by: William Douglas <william.douglas@intel.com>
-rw-r--r-- | src/corewatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corewatcher.c b/src/corewatcher.c index 5dc83bd..af4d920 100644 --- a/src/corewatcher.c +++ b/src/corewatcher.c @@ -107,7 +107,7 @@ int main(int argc, char**argv) int c; int i; - c = getopt_long(argc, argv, "adnh", opts, &i); + c = getopt_long(argc, argv, "adnth", opts, &i); if (c == -1) break; |