Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164679
b: refs/heads/master
c: 7086745
h: refs/heads/master
i:
  164677: 83e4b7d
  164675: 6d1d2ad
  164671: d91c365
v: v3
  • Loading branch information
Roland Dreier authored and Linus Torvalds committed Sep 23, 2009
1 parent 80de10b commit 8c904d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 02b51df1b07b4e9ca823c89284e704cadb323cd1
refs/heads/master: 70867453092297be9afb2249e712a1f960ec0a09
4 changes: 2 additions & 2 deletions trunk/include/linux/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ extern int printk_delay_msec;
* Print a one-time message (analogous to WARN_ONCE() et al):
*/
#define printk_once(x...) ({ \
static int __print_once = 1; \
static bool __print_once = true; \
\
if (__print_once) { \
__print_once = 0; \
__print_once = false; \
printk(x); \
} \
})
Expand Down

0 comments on commit 8c904d9

Please sign in to comment.