diff options
author | jhb <jhb@FreeBSD.org> | 2000-09-09 00:14:27 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-09-09 00:14:27 +0000 |
commit | 3eeeb3783a32da9e43ce00e72c66f3c3c3917fca (patch) | |
tree | dd3013c007f817510e028af4c0c07862401f5cbc /sys/powerpc | |
parent | c7eff1de50ce14a539fbaea6c944edae5cdae0ba (diff) | |
download | FreeBSD-src-3eeeb3783a32da9e43ce00e72c66f3c3c3917fca.zip FreeBSD-src-3eeeb3783a32da9e43ce00e72c66f3c3c3917fca.tar.gz |
Add missing \'s to multline macros used for assertions.
Diffstat (limited to 'sys/powerpc')
-rw-r--r-- | sys/powerpc/include/mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/powerpc/include/mutex.h b/sys/powerpc/include/mutex.h index 759e952..b95ba16 100644 --- a/sys/powerpc/include/mutex.h +++ b/sys/powerpc/include/mutex.h @@ -223,9 +223,9 @@ char STR_IDIS[] = "!(fl & 0x200)"; extern char STR_IEN[]; extern char STR_IDIS[]; #endif /* MTX_STRS */ -#define ASS_IEN MPASS2((alpha_pal_rdps & ALPHA_PSL_IPL_MASK) +#define ASS_IEN MPASS2((alpha_pal_rdps & ALPHA_PSL_IPL_MASK) \ == ALPHA_PSL_IPL_HIGH, STR_IEN) -#define ASS_IDIS MPASS2((alpha_pal_rdps & ALPHA_PSL_IPL_MASK) +#define ASS_IDIS MPASS2((alpha_pal_rdps & ALPHA_PSL_IPL_MASK) \ != ALPHA_PSL_IPL_HIGH, STR_IDIS) #endif /* INVARIANTS */ |