summaryrefslogtreecommitdiffstats
path: root/libao2
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-03-07 18:33:01 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-03-07 21:34:54 +0200
commit5234c72e28c27e232a35ebcbadc50c5933cccf7d (patch)
treec413ec85799e5b46fd6d64280f060e2571fc99a3 /libao2
parent2569c2e2bc1e91f520d887b723d3138107f119f3 (diff)
downloadmpv-5234c72e28c27e232a35ebcbadc50c5933cccf7d.tar.bz2
mpv-5234c72e28c27e232a35ebcbadc50c5933cccf7d.tar.xz
Restore collapsed whitespace in output messages
For some reason commit e306174952d42e1cd6cc5efc50ae6bb0410501bc, which replaced translation macro names with the corresponding English strings, also collapsed multiple consecutive space characters into one. Change most of these back. In a couple of cases the amount of whitespace is important for alignment, and for the rest it at least keeps the strings closer to the existing translations.
Diffstat (limited to 'libao2')
-rw-r--r--libao2/ao_oss.c2
-rw-r--r--libao2/ao_sun.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libao2/ao_oss.c b/libao2/ao_oss.c
index 58d3b233cc..b7f01678e0 100644
--- a/libao2/ao_oss.c
+++ b/libao2/ao_oss.c
@@ -420,7 +420,7 @@ ac3_retry:
}
free(data);
if(ao_data.buffersize==0){
- mp_tmsg(MSGT_AO,MSGL_ERR,"[AO OSS]\n *** Your audio driver DOES NOT support select() ***\n Recompile MPlayer with #undef HAVE_AUDIO_SELECT in config.h !\n\n");
+ mp_tmsg(MSGT_AO,MSGL_ERR,"[AO OSS]\n *** Your audio driver DOES NOT support select() ***\n Recompile MPlayer with #undef HAVE_AUDIO_SELECT in config.h !\n\n");
return 0;
}
#endif
diff --git a/libao2/ao_sun.c b/libao2/ao_sun.c
index 72353bc736..96104ef963 100644
--- a/libao2/ao_sun.c
+++ b/libao2/ao_sun.c
@@ -494,7 +494,7 @@ static int init(int rate,int channels,int format,int flags){
audio_fd=open(audio_dev, O_WRONLY);
if(audio_fd<0){
- mp_tmsg(MSGT_AO, MSGL_ERR, "[AO SUN] Can't open audio device %s, %s -> nosound.\n", audio_dev, strerror(errno));
+ mp_tmsg(MSGT_AO, MSGL_ERR, "[AO SUN] Can't open audio device %s, %s -> nosound.\n", audio_dev, strerror(errno));
return 0;
}