Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gtimer check fix - wrong fcn redirects
  • Loading branch information
perexg committed Apr 24, 2015
1 parent 209d022 commit dc311fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tvheadend.h
Expand Up @@ -185,9 +185,9 @@ void GTIMER_FCN(gtimer_arm_abs2)

#if ENABLE_GTIMER_CHECK
#define gtimer_arm(a, b, c, d) GTIMER_FCN(gtimer_arm)(SRCLINEID(), __func__, a, b, c, d)
#define gtimer_arm_ms(a, b, c, d) GTIMER_FCN(gtimer_arm)(SRCLINEID(), __func__, a, b, c, d)
#define gtimer_arm_abs(a, b, c, d) GTIMER_FCN(gtimer_arm)(SRCLINEID(), __func__, a, b, c, d)
#define gtimer_arm_abs2(a, b, c, d) GTIMER_FCN(gtimer_arm)(SRCLINEID(), __func__, a, b, c, d)
#define gtimer_arm_ms(a, b, c, d) GTIMER_FCN(gtimer_arm_ms)(SRCLINEID(), __func__, a, b, c, d)
#define gtimer_arm_abs(a, b, c, d) GTIMER_FCN(gtimer_arm_abs)(SRCLINEID(), __func__, a, b, c, d)
#define gtimer_arm_abs2(a, b, c, d) GTIMER_FCN(gtimer_arm_abs2)(SRCLINEID(), __func__, a, b, c, d)
#endif

void gtimer_disarm(gtimer_t *gti);
Expand Down

0 comments on commit dc311fd

Please sign in to comment.