From: Jason Parker Date: Thu, 1 Feb 2007 23:14:09 +0000 (+0000) Subject: Fix a small typo. Synopsis lines shouldn't have a newline X-Git-Tag: 1.2.15~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ab0b28abae19c6a3d7d6b1b0664d442556ca0c9;p=thirdparty%2Fasterisk.git Fix a small typo. Synopsis lines shouldn't have a newline git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@53107 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c index fcb931d328..6b30842b83 100644 --- a/apps/app_chanspy.c +++ b/apps/app_chanspy.c @@ -53,7 +53,7 @@ AST_MUTEX_DEFINE_STATIC(modlock); #define ALL_DONE(u, ret) LOCAL_USER_REMOVE(u); return ret; #define get_volfactor(x) x ? ((x > 0) ? (1 << x) : ((1 << abs(x)) * -1)) : 0 -static const char *synopsis = "Listen to the audio of an active channel\n"; +static const char *synopsis = "Listen to the audio of an active channel"; static const char *app = "ChanSpy"; static const char *desc = " ChanSpy([chanprefix][|options]): This application is used to listen to the\n"