Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
more indent cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed May 28, 2006
1 parent 762ad06 commit a3d86b1
Show file tree
Hide file tree
Showing 4 changed files with 182 additions and 195 deletions.
3 changes: 1 addition & 2 deletions Makefile.in
Expand Up @@ -130,8 +130,7 @@ indent:
find . \( \
-name '*.h' -o \
-name '*.c' -o \
-name '*.cc' -o \
-name '*.m' \) \
-name '*.cc' \) \
-exec indent {} \;

clean:
Expand Down
21 changes: 10 additions & 11 deletions src/audio/alsa/SDL_alsa_audio.c
Expand Up @@ -106,17 +106,16 @@ static snd_pcm_uframes_t
* params,
snd_pcm_uframes_t
val, int *dir);
static
snd_pcm_sframes_t (*SDL_NAME (snd_pcm_hw_params_get_period_size)) (const
snd_pcm_hw_params_t
*
params);
static unsigned
int (*SDL_NAME (snd_pcm_hw_params_set_periods_near)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t
* params,
unsigned int val,
int *dir);
static snd_pcm_sframes_t
(*SDL_NAME (snd_pcm_hw_params_get_period_size)) (const
snd_pcm_hw_params_t
* params);
static unsigned int
(*SDL_NAME (snd_pcm_hw_params_set_periods_near)) (snd_pcm_t * pcm,
snd_pcm_hw_params_t
* params,
unsigned int val,
int *dir);
static int (*SDL_NAME (snd_pcm_hw_params_get_periods)) (snd_pcm_hw_params_t *
params);
static int (*SDL_NAME (snd_pcm_hw_params)) (snd_pcm_t * pcm,
Expand Down

0 comments on commit a3d86b1

Please sign in to comment.