Styling inconsistencies

Cheers,

Alex

From b5816ec55073507d4527ad3a77eae1878adb30d3 Mon Sep 17 00:00:00 2001
From: Alex Cornejo <acornejo@gmail.com>
Date: Sun, 29 Mar 2009 14:24:27 -0400
Subject: [PATCH] Fixed some styling issues.

Noticed in the latest pull that a commit introduced a lot of styling
inconsistencies, decided to remove those and others found by a simple
grep.

Signed-off-by: Alex Cornejo <acornejo@gmail.com>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Alex Cornejo 2009-03-29 14:26:39 -04:00 committed by Julien Danjou
parent 638f9651e5
commit 106e6ed5ab
12 changed files with 58 additions and 56 deletions

3
dbus.c
View File

@ -455,7 +455,8 @@ a_dbus_cleanup(void)
dbus_error_free(&err);
if (dbusio.fd >= 0) {
if(dbusio.fd >= 0)
{
ev_ref(EV_DEFAULT_UC);
ev_io_stop(EV_DEFAULT_UC_ &dbusio);
dbusio.fd = -1;

3
key.c
View File

@ -127,7 +127,8 @@ key_register(keybindings_t *keys, keyb_t *k)
while(l < r) {
int i = (r + l) / 2;
switch (key_cmp(k, arr->tab[i])) {
switch(key_cmp(k, arr->tab[i]))
{
case -1: /* k < arr->tab[i] */
r = i;
break;