add some references
[lunaix-os.git] / lunaix-os / includes / lunaix / common.h
index d9ffeaef842f605f91a9e3c82d6b4709687d61fc..51c37f630e0c54ca353f59725fc33c58c7585514 100644 (file)
@@ -24,7 +24,7 @@
  * @member:    the name of the member within the struct.
  *
  */
-#define container_of(ptr, type, member) ({                                 \
+#define container_of(ptr, type, member) ({                     \
         const typeof( ((type *)0)->member ) *__mptr = (ptr);   \
         (type *)( (char *)__mptr - offsetof(type,member) );})