From 12ff77f9757d240de38f0a3d6ed569831eeecf95 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 7 Jun 2009 14:55:51 +0000 Subject: Global var cleanup - constification and removing unused vars. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@199479 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_fax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/app_fax.c') diff --git a/apps/app_fax.c b/apps/app_fax.c index 6cb18848e..8f98af2e7 100644 --- a/apps/app_fax.c +++ b/apps/app_fax.c @@ -141,8 +141,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") ***/ -static char *app_sndfax_name = "SendFAX"; -static char *app_rcvfax_name = "ReceiveFAX"; +static const char app_sndfax_name[] = "SendFAX"; +static const char app_rcvfax_name[] = "ReceiveFAX"; #define MAX_SAMPLES 240 -- cgit v1.2.3