[filesystem.c] Add a cast to aviod a warning with VisualStudio 2017.
[metze/wireshark/wip.git] / wsutil / crc11.c
index ba4d4a19399851fc5304e313338728d69263be36..919bb9eb46a2554303ff38f59d6a9df4952fdfc7 100644 (file)
@@ -1,7 +1,5 @@
 /*
  * crc11.c
- * $Id$
- *
  * Wireshark - Network traffic analyzer
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
@@ -21,7 +19,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
 
-#include <glib.h>
 
 #include <wsutil/crc11.h>
 
@@ -81,3 +78,16 @@ guint16 crc11_307_noreflect_noxor(const guint8 *data, guint64 data_len)
     }
     return crc & 0x7ff;
 }
+
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */