Skip to content

Commit

Permalink
ext4: Fix type warning on 64-bit platforms in tracing events header
Browse files Browse the repository at this point in the history
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
  • Loading branch information
Theodore Ts'o committed Jun 21, 2009
1 parent 8e4a718 commit 627ad9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/trace/events/ext4.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ TRACE_EVENT(ext4_free_inode,

TP_printk("dev %s ino %lu mode %d uid %u gid %u blocks %llu",
jbd2_dev_to_name(__entry->dev), __entry->ino, __entry->mode,
__entry->uid, __entry->gid, __entry->blocks)
__entry->uid, __entry->gid,
(unsigned long long) __entry->blocks)
);

TRACE_EVENT(ext4_request_inode,
Expand Down

0 comments on commit 627ad9f

Please sign in to comment.