diff options
author | Dave Chinner <dchinner@redhat.com> | 2022-04-21 10:47:25 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-04-21 10:47:25 +1000 |
commit | 90215d74987159fdd7a6d800256ba1d2a9b0dca8 (patch) | |
tree | fde1acdd69556a85fe63d3398b7d7d509b666f1f /fs/xfs/xfs_message.c | |
parent | a103375307ade71f3394889310ba37abb23c1c21 (diff) |
xfs: convert ptag flags to unsigned.
5.18 w/ std=gnu11 compiled with gcc-5 wants flags stored in unsigned
fields to be unsigned.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Chandan Babu R <chandan.babu@oracle.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_message.c')
-rw-r--r-- | fs/xfs/xfs_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_message.c b/fs/xfs/xfs_message.c index bc66d95c8d4c..c5084dce75cd 100644 --- a/fs/xfs/xfs_message.c +++ b/fs/xfs/xfs_message.c @@ -62,7 +62,7 @@ define_xfs_printk_level(xfs_debug, KERN_DEBUG); void xfs_alert_tag( const struct xfs_mount *mp, - int panic_tag, + uint32_t panic_tag, const char *fmt, ...) { struct va_format vaf; |