diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-13 19:23:09 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-13 19:23:09 -0700 |
commit | b7c513d0049fc726e8c2bdba84f601eac0801512 (patch) | |
tree | 2a29a0989c5e5516358276265f769649cb1afe0d /src/sound.c | |
parent | 989b29ad2242850e8256c7509c9551742ddeab45 (diff) | |
download | emacs-b7c513d0049fc726e8c2bdba84f601eac0801512.tar.gz |
* sound.c (current_sound_device, current_sound): Now static.
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound.c b/src/sound.c index 4478a067c09..e121b5e37f3 100644 --- a/src/sound.c +++ b/src/sound.c @@ -281,8 +281,8 @@ struct sound /* These are set during `play-sound-internal' so that sound_cleanup has access to them. */ -struct sound_device *current_sound_device; -struct sound *current_sound; +static struct sound_device *current_sound_device; +static struct sound *current_sound; /* Function prototypes. */ |