Wireshark-commits: [Wireshark-commits] rev 35587: /trunk/epan/dissectors/ /trunk/epan/dissectors/:

Date: Wed, 19 Jan 2011 21:45:57 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=35587

User: sfisher
Date: 2011/01/19 01:45 PM

Log:
 Fix warning found by clang...
 
 packet-dcerpc.c:4056:19: error: comparison of integers of different signs:
       'guint32' (aka 'unsigned int') and 'int' [-Wsign-compare]
     for (i = 0; i < (int) commands_nb; ++i) {
                 ~ ^ ~~~~~~~~~~~~~~~~~
 
 ... by removing the "(int)" cast

Directory: /trunk/epan/dissectors/
  Changes    Path               Action
  +1 -1      packet-dcerpc.c    Modified