]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Fix several spelling errors for “writable” and derivatives.
authorJordi Mallach <jordi@debian.org>
Wed, 15 May 2013 17:06:00 +0000 (19:06 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 16 May 2013 08:13:49 +0000 (10:13 +0200)
Signed-off-by: Jordi Mallach <jordi@debian.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
src/alisp/alisp.c
src/alisp/alisp_snd.c
src/rawmidi/rawmidi.c

index 5dd5b0639ceaac18028a7b13df3e1d70317bac7e..1796c33c3faf51132a38b2d35b9ec3399313f0ef 100644 (file)
@@ -989,7 +989,7 @@ static void dump_objects(struct alisp_instance *instance, const char *fname)
        else
                err = snd_output_stdio_open(&out, fname, "w+");
        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;
        }
 
@@ -1062,7 +1062,7 @@ static void dump_obj_lists(struct alisp_instance *instance, const char *fname)
        else
                err = snd_output_stdio_open(&out, fname, "w+");
        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;
        }
 
index de429d9452627713f0c8971faafc1bed50ad451a..0a1a3b4eb6c30ab9b3947c764b51734636794b20 100644 (file)
@@ -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, "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, "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)));
index 0bd6b9649f58dca79fa14c83bec8cf21b7e38b6e..b835b472b3615ed4d027e6ffccbab159cd5174aa 100644 (file)
@@ -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
 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,
-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.
 
 \subsection rawmidi_open_sync Sync open (flag)