Module Name: src
Committed By: plunky
Date: Sun Oct 14 08:35:45 UTC 2012
Modified Files:
src/usr.sbin/btpand: btpand.h
Log Message:
no trailing comma on enum
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/btpand/btpand.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/btpand/btpand.h
diff -u src/usr.sbin/btpand/btpand.h:1.3 src/usr.sbin/btpand/btpand.h:1.4
--- src/usr.sbin/btpand/btpand.h:1.3 Tue May 12 21:50:38 2009
+++ src/usr.sbin/btpand/btpand.h Sun Oct 14 08:35:45 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: btpand.h,v 1.3 2009/05/12 21:50:38 plunky Exp $ */
+/* $NetBSD: btpand.h,v 1.4 2012/10/14 08:35:45 plunky Exp $ */
/*-
* Copyright (c) 2008-2009 Iain Hibbert
@@ -56,7 +56,7 @@ enum channel_state {
CHANNEL_CLOSED,
CHANNEL_WAIT_CONNECT_REQ,
CHANNEL_WAIT_CONNECT_RSP,
- CHANNEL_OPEN,
+ CHANNEL_OPEN
};
#define CHANNEL_MAXQLEN 128