Advertisement
Guest User

inline-functions-fix.patch

a guest
Jun 30th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.55 KB | None | 0 0
  1. --- a/brightd.c 2015-06-30 23:20:50.636205206 +0000
  2. +++ b/brightd.c 2015-06-30 23:34:15.452916469 +0000
  3. @@ -121,7 +121,7 @@
  4.  /*
  5.   * Write an debug message to the console
  6.   */
  7. -inline void info(char *str) { /*{{{*/
  8. +void info(char *str) { /*{{{*/
  9.     if(verbose == 1 && daemonize == 0) {
  10.         printf("%s\n", str);
  11.     }
  12. @@ -307,7 +307,7 @@
  13.  /*
  14.   * Event source filter
  15.   */
  16. -inline char isEventFileValid(char *file) { /* {{{ */
  17. +char isEventFileValid(char *file) { /* {{{ */
  18.     if(*((char*)&eventSourceFilter) == 0) {
  19.         return 1;
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement