mirror of
https://github.com/opnsense/src.git
synced 2026-05-25 02:35:01 -04:00
Fix to b999366aab for compilation on i386.
Reported by: jenkins, Philip Paeps
This commit is contained in:
parent
724842d6aa
commit
c2a74ca2c3
1 changed files with 2 additions and 2 deletions
|
|
@ -327,7 +327,6 @@ readsuper(void *devfd, struct fs **fsp, off_t sblockloc, int isaltsblk,
|
|||
#define MPRINT(...) do { } while (0)
|
||||
#else
|
||||
#define MPRINT(...) if (prtmsg) printf(__VA_ARGS__)
|
||||
#endif
|
||||
/*
|
||||
* Print error messages when bad superblock values are found.
|
||||
*/
|
||||
|
|
@ -336,7 +335,8 @@ static int prtmsg = 1;
|
|||
SYSCTL_DECL(_vfs_ffs);
|
||||
SYSCTL_INT(_vfs_ffs, OID_AUTO, prtsberrmsg, CTLFLAG_RWTUN, &prtmsg, 0,
|
||||
"Print error messages when bad superblock values are found");
|
||||
#endif
|
||||
#endif /* _KERNEL */
|
||||
#endif /* STANDALONE_SMALL */
|
||||
#undef CHK
|
||||
#define CHK(lhs, op, rhs, fmt) \
|
||||
if (lhs op rhs) { \
|
||||
|
|
|
|||
Loading…
Reference in a new issue