mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
Fix several spelling errors for “writable” and derivatives.
Signed-off-by: Jordi Mallach <jordi@debian.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
b906db19ef
commit
39a4dad148
3 changed files with 4 additions and 4 deletions
|
|
@ -989,7 +989,7 @@ static void dump_objects(struct alisp_instance *instance, const char *fname)
|
||||||
else
|
else
|
||||||
err = snd_output_stdio_open(&out, fname, "w+");
|
err = snd_output_stdio_open(&out, fname, "w+");
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
SNDERR("alisp: cannot open file '%s' for writting (%s)", fname, snd_strerror(errno));
|
SNDERR("alisp: cannot open file '%s' for writing (%s)", fname, snd_strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1062,7 +1062,7 @@ static void dump_obj_lists(struct alisp_instance *instance, const char *fname)
|
||||||
else
|
else
|
||||||
err = snd_output_stdio_open(&out, fname, "w+");
|
err = snd_output_stdio_open(&out, fname, "w+");
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
SNDERR("alisp: cannot open file '%s' for writting (%s)", fname, snd_strerror(errno));
|
SNDERR("alisp: cannot open file '%s' for writing (%s)", fname, snd_strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -572,7 +572,7 @@ static struct alisp_object * FA_hctl_elem_info(struct alisp_instance * instance,
|
||||||
}
|
}
|
||||||
p1 = add_cons(instance, p1, 1, "type", new_string(instance, snd_ctl_elem_type_name(type)));
|
p1 = add_cons(instance, p1, 1, "type", new_string(instance, snd_ctl_elem_type_name(type)));
|
||||||
p1 = add_cons(instance, p1, 1, "readable", new_integer(instance, snd_ctl_elem_info_is_readable(info)));
|
p1 = add_cons(instance, p1, 1, "readable", new_integer(instance, snd_ctl_elem_info_is_readable(info)));
|
||||||
p1 = add_cons(instance, p1, 1, "writeable", new_integer(instance, snd_ctl_elem_info_is_writable(info)));
|
p1 = add_cons(instance, p1, 1, "writable", new_integer(instance, snd_ctl_elem_info_is_writable(info)));
|
||||||
p1 = add_cons(instance, p1, 1, "volatile", new_integer(instance, snd_ctl_elem_info_is_volatile(info)));
|
p1 = add_cons(instance, p1, 1, "volatile", new_integer(instance, snd_ctl_elem_info_is_volatile(info)));
|
||||||
p1 = add_cons(instance, p1, 1, "inactive", new_integer(instance, snd_ctl_elem_info_is_inactive(info)));
|
p1 = add_cons(instance, p1, 1, "inactive", new_integer(instance, snd_ctl_elem_info_is_inactive(info)));
|
||||||
p1 = add_cons(instance, p1, 1, "locked", new_integer(instance, snd_ctl_elem_info_is_locked(info)));
|
p1 = add_cons(instance, p1, 1, "locked", new_integer(instance, snd_ctl_elem_info_is_locked(info)));
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ contents of written buffer - passed by snd_rawmidi_write() - atomically
|
||||||
to output ring buffer in the kernel space. This flag also means that device
|
to output ring buffer in the kernel space. This flag also means that device
|
||||||
is not opened exclusively, so more applications can share given rawmidi device.
|
is not opened exclusively, so more applications can share given rawmidi device.
|
||||||
Note that applications must send the whole MIDI message including the running status,
|
Note that applications must send the whole MIDI message including the running status,
|
||||||
because another writting application might break the MIDI message in the output
|
because another writing application might break the MIDI message in the output
|
||||||
buffer.
|
buffer.
|
||||||
|
|
||||||
\subsection rawmidi_open_sync Sync open (flag)
|
\subsection rawmidi_open_sync Sync open (flag)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue