]> git.sur5r.net Git - cc65/blobdiff - src/common/hashtab.h
Make much more usage of dynamic strings (StrBufs) instead of char* and
[cc65] / src / common / hashtab.h
index 98b5901c45079c1e09bfb397e1ed3efdf667d851..4e772fa7fe05efe36c1d4aa9bf9b93206f903b37 100644 (file)
@@ -6,8 +6,8 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2003      Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
+/* (C) 2003-2008 Ullrich von Bassewitz                                       */
+/*               Roemerstrasse 52                                            */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
@@ -112,7 +112,7 @@ INLINE void InitHashNode (HashNode* N, void* Entry)
 #define InitHashNode(N, E)     \
     (N)->Next   = 0,            \
     (N)->Owner  = 0,            \
-    (N)->Entry  = (E)  
+    (N)->Entry  = (E)
 #endif
 
 #if defined(HAVE_INLINE)