]> git.llucax.com Git - software/posixx.git/commitdiff
Remove extra comma at the end of enum values
authorLeandro Lucarella <llucarella@integratech.com.ar>
Thu, 18 Sep 2008 22:41:55 +0000 (19:41 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 19 Sep 2008 20:08:29 +0000 (17:08 -0300)
ISO C++ 98 doesn't allow trailing commas.

src/linux/tipc.hpp

index 15292e8ac388ad8db2c87029158c016c22210e44..aa450b814ca2856f5a5872f4f8f65f168f156e30 100644 (file)
@@ -275,7 +275,7 @@ struct sockaddr: sockaddr_tipc
        {
                ID = TIPC_ADDR_ID, ///< Port ID
                NAME = TIPC_ADDR_NAME, ///< Port name
-               NAMESEQ = TIPC_ADDR_NAMESEQ, ///< Name sequence or multicast
+               NAMESEQ = TIPC_ADDR_NAMESEQ ///< Name sequence or multicast
        };
 
        /**