Skip to content

Commit

Permalink
Style fix: Add a space between the closing/opening bracket
Browse files Browse the repository at this point in the history
This patch replaces every occurrence of '){' with ') {'.
The ffmpeg source tree was excluded since it will disappear anyways.

Command used for this:
    find . -type d \( -name ffmpeg \) -prune -o \
        -regex '\(.*\.[hc]\|.*\.cc\)' \
        -exec sed -i -e 's/){/) {/' {} \;
  • Loading branch information
poljar (Damir Jelić) authored and tanuk committed Jun 24, 2013
1 parent faf991c commit cbd2746
Show file tree
Hide file tree
Showing 9 changed files with 121 additions and 121 deletions.
2 changes: 1 addition & 1 deletion src/daemon/ltdl-bind-now.c
Expand Up @@ -86,7 +86,7 @@ static int bind_now_close(lt_user_data d, lt_module m) {

pa_assert(m);

if (dlclose(m) != 0){
if (dlclose(m) != 0) {
lt_dlseterror(LT_ERROR_CANNOT_CLOSE);
return 1;
}
Expand Down
2 changes: 1 addition & 1 deletion src/modules/gconf/module-gconf.c
Expand Up @@ -215,7 +215,7 @@ static int handle_event(struct userdata *u) {
int ret = 0;

do {
if ((opcode = read_byte(u)) < 0){
if ((opcode = read_byte(u)) < 0) {
if (errno == EINTR || errno == EAGAIN)
break;
goto fail;
Expand Down

0 comments on commit cbd2746

Please sign in to comment.