# HG changeset patch # User Hannes Eder <[email protected]> # Date 1242923071 -7200 # Node ID 98d9823f7d45b525fb376817794e9ba8bb5c35d3 # Parent c80a880f61e04e5622ce5818a285a1007fda9391 ccm: cleanup: make global symbols static
diff -r c80a880f61e0 -r 98d9823f7d45 membership/ccm/clmtest.c --- a/membership/ccm/clmtest.c +++ b/membership/ccm/clmtest.c @@ -33,9 +33,9 @@ #define MAX_ITEMS 5 /* for a max 5-nodes cluster */ /* global variables */ -SaClmHandleT hd; -SaClmClusterNotificationT nbuf[MAX_ITEMS]; -SaClmClusterNodeT cn; +static SaClmHandleT hd; +static SaClmClusterNotificationT nbuf[MAX_ITEMS]; +static SaClmClusterNodeT cn; static void track_start(int sig) _______________________________________________________ Linux-HA-Dev: [email protected] http://lists.linux-ha.org/mailman/listinfo/linux-ha-dev Home Page: http://linux-ha.org/
