summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Multimedia Maintainers <debian-multimedia@lists.debian.org>2019-08-19 21:21:35 +0200
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2019-08-19 21:21:35 +0200
commit77f29248ff35709d330d53777d73b708035bec88 (patch)
treeae776c72fc7eb72b2b30874814f0afc15dd227bd
parent9ee4398cac8e40f85fbd8f8bb8de6cce1cb0e1b6 (diff)
Fix spelling mistakesarchive/debian/19.6-1
Forwarded: yes Last-Update: 2017-01-23 Last-Update: 2017-01-23 Gbp-Pq: Name fix-spelling.patch
-rw-r--r--audio.c2
-rw-r--r--s7.c4
-rw-r--r--snd-prefs.c2
-rw-r--r--snd-snd.c2
-rw-r--r--tools/ffitest.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/audio.c b/audio.c
index f0cf3a0..17d6dde 100644
--- a/audio.c
+++ b/audio.c
@@ -4566,7 +4566,7 @@ int jack_mus_audio_write(int line, char *buf, int bytes){
return MUS_ERROR;
}
if (src_data.input_frames!=len){
- printf("Unsuccessfull resampling: Should have used %d bytes, used %ld.",len,(long int)(src_data.input_frames));
+ printf("Unsuccessful resampling: Should have used %d bytes, used %ld.",len,(long int)(src_data.input_frames));
return MUS_ERROR;
}
if (ch>0 && src_data.output_frames_gen!=outlen){
diff --git a/s7.c b/s7.c
index c7bf139..9c3d6e7 100644
--- a/s7.c
+++ b/s7.c
@@ -26925,7 +26925,7 @@ static s7_pointer iterator_method(s7_scheme *sc, s7_pointer e)
s7_pointer it;
it = s7_apply_function(sc, func, list_1(sc, e));
if (!is_iterator(it))
- return(s7_error(sc, sc->error_symbol, set_elist_2(sc, wrap_string(sc, "make-iterator method must return an interator: ~S", 49), it)));
+ return(s7_error(sc, sc->error_symbol, set_elist_2(sc, wrap_string(sc, "make-iterator method must return an iterator: ~S", 49), it)));
return(it);
}
return(NULL);
@@ -94285,7 +94285,7 @@ s7_scheme *s7_init(void)
the associated clauses are evaluated, whereupon cond returns."
#define H_and "(and expr expr ...) evaluates each of its arguments in order, quitting (and returning #f) \
as soon as one of them returns #f. If all are non-#f, it returns the last value."
- #define H_or "(or expr expr ...) evaluates each of its argments in order, quitting as soon as one of them is not #f. \
+ #define H_or "(or expr expr ...) evaluates each of its arguments in order, quitting as soon as one of them is not #f. \
If all are #f, or returns #f."
#define H_case "(case val ((key...) clause...)...) looks for val in the various lists of keys, and if a \
match is found (via eqv?), the associated clauses are evaluated, and case returns."
diff --git a/snd-prefs.c b/snd-prefs.c
index 152b105..b1f2023 100644
--- a/snd-prefs.c
+++ b/snd-prefs.c
@@ -3431,7 +3431,7 @@ static void transform_type_from_text(prefs_info *prf)
}
if (curpos >= 0)
set_transform_type(curpos);
- else post_prefs_error("unknown tranform", prf);
+ else post_prefs_error("unknown transform", prf);
}
else post_prefs_error("no transform?", prf);
free(trimmed_str);
diff --git a/snd-snd.c b/snd-snd.c
index 00b9488..ae3e978 100644
--- a/snd-snd.c
+++ b/snd-snd.c
@@ -3516,7 +3516,7 @@ with_two_setter_args(g_set_read_only_reversed, g_set_read_only)
static Xen g_contrast_control_on(Xen snd)
{
- #define H_contrast_control_on "(" S_contrast_control_on " :optional snd): snd's control panel constrast button state"
+ #define H_contrast_control_on "(" S_contrast_control_on " :optional snd): snd's control panel contrast button state"
return(sound_get(snd, SP_CONTRASTING, S_contrast_control_on));
}
diff --git a/tools/ffitest.c b/tools/ffitest.c
index 7c1bd46..a5c6e90 100644
--- a/tools/ffitest.c
+++ b/tools/ffitest.c
@@ -1639,7 +1639,7 @@ int main(int argc, char **argv)
s7_pointer iter, x;
iter = s7_make_iterator(sc, s7_list(sc, 3, TO_S7_INT(1), TO_S7_INT(2), TO_S7_INT(3)));
if (!s7_is_iterator(iter))
- fprintf(stderr, "%d: %s is not an interator\n", __LINE__, TO_STR(iter));
+ fprintf(stderr, "%d: %s is not an iterator\n", __LINE__, TO_STR(iter));
if (s7_iterator_is_at_end(sc, iter))
fprintf(stderr, "%d: %s is prematurely done\n", __LINE__, TO_STR(iter));
x = s7_iterate(sc, iter);