I'm guessing the C_ASSERT macro is defined something like this:
#define C_ASSERT(x) typedef char C_ASSERT_ ## __COUNTER__ [(x) ? 1 : -1];
This is a compile-time assertion: if the compile-time expression x is true, then this expands to something like
typedef char C_ASSERT_1[1];
which declares the typename C_ASSERT_1 to be an alias for the type char[1] (array of 1 char). Converely, if the expression x is false, it expands to
typedef char C_ASSERT_1[-1];
which is a compiler error, since you can't have an array type of negative size.
Hence, your problem is that the expression sizeof(somestruct) == some#define is false, i.e. the size of somestruct is NOT what your code is expecting. You need to fix this -- either change the size of somestruct, or change the value of some#define, making sure that this won't break anything.