Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0adc1803 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'for-linus-3' of git://git.code.sf.net/p/openipmi/linux-ipmi

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
parents 3b421b80 1421c935
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);
	}
}