aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2002-04-30 01:01:49 +0000
committerStefan Monnier2002-04-30 01:01:49 +0000
commit3d05168ad4832706559d9e1680a0c6872b18ff8b (patch)
tree2b6c4446c80026ba7ba63a32ab26f7bb99730435 /src
parentcc4db0c748a2926df927cbc6e35cf8949fc44a95 (diff)
downloademacs-3d05168ad4832706559d9e1680a0c6872b18ff8b.tar.gz
emacs-3d05168ad4832706559d9e1680a0c6872b18ff8b.zip
(Fplay_sound_internal): Update call to openp.
Diffstat (limited to 'src')
-rw-r--r--src/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c
index aa2e27dbfcc..4504e7e6ee1 100644
--- a/src/sound.c
+++ b/src/sound.c
@@ -421,7 +421,7 @@ Internal use only, use `play-sound' instead. */)
421 { 421 {
422 /* Open the sound file. */ 422 /* Open the sound file. */
423 s.fd = openp (Fcons (Vdata_directory, Qnil), 423 s.fd = openp (Fcons (Vdata_directory, Qnil),
424 attrs[SOUND_FILE], Qnil, &file, 0); 424 attrs[SOUND_FILE], Qnil, &file, Qnil);
425 if (s.fd < 0) 425 if (s.fd < 0)
426 sound_perror ("Could not open sound file"); 426 sound_perror ("Could not open sound file");
427 427