Prefix CONTAINER_OF with UC_

This commit is contained in:
Nils O. Selåsdal
2013-09-28 23:45:51 +02:00
parent ff0fd32ae1
commit dd517a5d85
8 changed files with 29 additions and 19 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ START_TEST (test_container_of)
};
struct Inner *innerp = &outer.inner;
struct Outer *outerp = CONTAINER_OF(innerp, struct Outer, inner);
struct Outer *outerp = UC_CONTAINER_OF(innerp, struct Outer, inner);
fail_if(outerp != &outer);