From 4919b89a338d4b06baaaff0410b5eb27cc67949f Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Fri, 12 Oct 2007 23:06:33 +0000 Subject: [PATCH] Fixed command line help. --- iptv.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/iptv.c b/iptv.c index 57d6e08..60870f4 100644 --- a/iptv.c +++ b/iptv.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: iptv.c,v 1.18 2007/10/12 21:43:18 ajhseppa Exp $ + * $Id: iptv.c,v 1.19 2007/10/12 23:06:33 rahrenbe Exp $ */ #include @@ -62,9 +62,7 @@ const char *cPluginIptv::CommandLineHelp(void) { debug("cPluginIptv::CommandLineHelp()\n"); // Return a string that describes all known command line options. - return cString::sprintf( - " -d --devices= number of devices to be created (default: %d)\n", - deviceCount); + return " -d , --devices= number of devices to be created (default: 1)\n"; } bool cPluginIptv::ProcessArgs(int argc, char *argv[])