mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
492 B

  1. The usual fixes to make the code leagal C for gcc-3.4.
  2. - Rene Rebe <rene@rocklinux.org>
  3. --- ./apmd.c.vanilla 2004-05-26 17:53:37.000000000 +0200
  4. +++ ./apmd.c 2004-05-26 17:56:55.000000000 +0200
  5. @@ -71,8 +71,8 @@
  6. #ifdef APM_TRACE
  7. -#define ADEBUG(lev,args...) \
  8. - if (APM_TRACE>=lev) syslog(LOG_DEBUG, __FUNCTION__ ": " args)
  9. +#define ADEBUG(lev, text, args...) \
  10. + if (APM_TRACE>=lev) syslog(LOG_DEBUG, "%s : " text, __FUNCTION__, args)
  11. #else
  12. #define ADEBUG(args...)
  13. #endif