]> git.alsa-project.org Git - alsa-lib.git/commit
Fix invalid long long format specifier
authorJohn Spencer <maillist-alsa@barfooze.de>
Tue, 24 Apr 2012 10:58:48 +0000 (12:58 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 24 Apr 2012 13:38:45 +0000 (15:38 +0200)
commit1d3f7975f920f47e6a8a324f547da2180e64171a
treedc22aef6a52f9ece34553ed7156ee9482d5b882e
parentbb5c49fa4160ec1d819fb03fc8dfb5387dad0522
Fix invalid long long format specifier

Per POSIX:

       L      Specifies that a following a, A, e, E, f, F, g, or G  conversion
              specifier applies to a long double argument.

L is only intended to be used with long doubles, not long long ints.

the proper way is to use "ll" instead.

Signed-off-by: John Spencer <maillist-alsa@barfooze.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
src/conf.c
test/midiloop.c