diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2002-03-15 00:06:42 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-03-15 00:06:42 -0800 |
| commit | 98f0db7a7293de8614331f7fda2cdf0974df7b77 (patch) | |
| tree | 94f1146dd14debcd5fc2f8de5edbc718063e90c3 | |
| parent | 099445b489625b80b1d6687c9b6072dbeaca4096 (diff) | |
Trivial compile fix
| -rw-r--r-- | sound/core/rtctimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/rtctimer.c b/sound/core/rtctimer.c index c7085ae4aef5..b4610de3d099 100644 --- a/sound/core/rtctimer.c +++ b/sound/core/rtctimer.c @@ -76,7 +76,7 @@ static struct tasklet_struct rtc_tq; static int rtctimer_open(snd_timer_t *t) { - err = rtc_register(&rtc_task); + int err = rtc_register(&rtc_task); if (err < 0) return err; t->private_data = &rtc_task; |
