aboutsummaryrefslogtreecommitdiff
path: root/include/seq.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2002-02-05 11:36:20 +0000
committerTakashi Iwai <tiwai@suse.de>2002-02-05 11:36:20 +0000
commit6ce9436b13b9a671e3453a0a6728ae8266d237c5 (patch)
treee59442b09da35d8b564e5c2d1ff81fcbf039e8a0 /include/seq.h
parent9dd7c93a56502387b108b3aa0892af2a68cb222b (diff)
removed comma from last element of enums.
Diffstat (limited to 'include/seq.h')
-rw-r--r--include/seq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/seq.h b/include/seq.h
index 934a2985..1a56e76c 100644
--- a/include/seq.h
+++ b/include/seq.h
@@ -68,7 +68,7 @@ do {\
typedef enum _snd_seq_type {
SND_SEQ_TYPE_HW, /**< hardware */
SND_SEQ_TYPE_SHM, /**< shared memory (NYI) */
- SND_SEQ_TYPE_INET, /**< network (NYI) */
+ SND_SEQ_TYPE_INET /**< network (NYI) */
} snd_seq_type_t;
/** special client (port) ids */
@@ -455,7 +455,7 @@ int snd_seq_set_queue_tempo(snd_seq_t *handle, int q, snd_seq_queue_tempo_t *tem
typedef enum {
SND_SEQ_TIMER_ALSA = 0, /* ALSA timer */
SND_SEQ_TIMER_MIDI_CLOCK = 1, /* Midi Clock (CLOCK event) */
- SND_SEQ_TIMER_MIDI_TICK = 2, /* Midi Timer Tick (TICK event */
+ SND_SEQ_TIMER_MIDI_TICK = 2 /* Midi Timer Tick (TICK event */
} snd_seq_queue_timer_type_t;
size_t snd_seq_queue_timer_sizeof(void);