aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-11-05 22:31:57 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-11-05 22:31:57 +0000
commited837bc7a517040020da2717b392a0ca086e276a (patch)
tree2f175b32f9c5593126f897363cc530c2b9651509
parent12f3d9fe370a2cc07e792877895d0b96fba08ace (diff)
From Albert Chin
The IBM C compiler on AIX 4.3.3 doesn't accept a trailing comma after the last enum definition. Patch attached for stat_menu.h svn path=/trunk/; revision=19813
-rw-r--r--stat_menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/stat_menu.h b/stat_menu.h
index 1dd56f9009..142cc5b47e 100644
--- a/stat_menu.h
+++ b/stat_menu.h
@@ -19,7 +19,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __STATMENU_H__
@@ -50,9 +50,9 @@ typedef enum {
REGISTER_STAT_GROUP_RESPONSE_TIME,
REGISTER_STAT_GROUP_TELEPHONY,
/* XXX - split into telephony and VoIP? */
- REGISTER_ANALYZE_GROUP_NONE,
+ REGISTER_ANALYZE_GROUP_NONE
#ifdef HAVE_LUA_5_1
- REGISTER_TOOLS_GROUP_NONE,
+ ,REGISTER_TOOLS_GROUP_NONE
#endif
} register_stat_group_t;