Skip to content

Commit

Permalink
Merge tag 'for-linus-3' of git://git.code.sf.net/p/openipmi/linux-ipmi
Browse files Browse the repository at this point in the history
Pull IPMI fixlet from Corey Minyard:
 "Fix a compile warning"

* tag 'for-linus-3' of git://git.code.sf.net/p/openipmi/linux-ipmi:
  ipmi: Fix compile warning with tv_usec
  • Loading branch information
Linus Torvalds committed Jan 7, 2015
2 parents 3b421b8 + 1421c93 commit 0adc180
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/char/ipmi/ipmi_ssif.c
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,8 @@ static void sender(void *send_info,

do_gettimeofday(&t);
pr_info("**Enqueue %02x %02x: %ld.%6.6ld\n",
msg->data[0], msg->data[1], t.tv_sec, t.tv_usec);
msg->data[0], msg->data[1],
(long) t.tv_sec, (long) t.tv_usec);
}
}

Expand Down

0 comments on commit 0adc180

Please sign in to comment.