[Telepathy-commits] [telepathy-salut/master] Coding style: remove the space after '!'
Alban Crequy
alban.crequy at collabora.co.uk
Fri Feb 6 03:14:55 PST 2009
---
src/salut-tubes-channel.c | 4 ++--
src/salut-tubes-manager.c | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/salut-tubes-channel.c b/src/salut-tubes-channel.c
index 0760795..c1981d0 100644
--- a/src/salut-tubes-channel.c
+++ b/src/salut-tubes-channel.c
@@ -1002,14 +1002,14 @@ salut_tubes_channel_tube_request (SalutTubesChannel *self,
channel_type = tp_asv_get_string (request_properties,
TP_IFACE_CHANNEL ".ChannelType");
- if (! tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_STREAM_TUBE))
+ if (!tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_STREAM_TUBE))
{
type = TP_TUBE_TYPE_STREAM;
service = tp_asv_get_string (request_properties,
SALUT_IFACE_CHANNEL_TYPE_STREAM_TUBE ".Service");
}
- else if (! tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_DBUS_TUBE))
+ else if (!tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_DBUS_TUBE))
{
type = TP_TUBE_TYPE_DBUS;
service = tp_asv_get_string (request_properties,
diff --git a/src/salut-tubes-manager.c b/src/salut-tubes-manager.c
index 9719470..cacb4c9 100644
--- a/src/salut-tubes-manager.c
+++ b/src/salut-tubes-manager.c
@@ -817,7 +817,7 @@ salut_tubes_manager_requestotron (SalutTubesManager *self,
tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_DBUS_TUBE))
return FALSE;
- if (! tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES))
+ if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES))
{
if (tp_channel_manager_asv_has_unknown_properties (request_properties,
tubes_channel_fixed_properties,
@@ -825,7 +825,7 @@ salut_tubes_manager_requestotron (SalutTubesManager *self,
&error))
goto error;
}
- else if (! tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_STREAM_TUBE))
+ else if (!tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_STREAM_TUBE))
{
const gchar *service;
@@ -846,7 +846,7 @@ salut_tubes_manager_requestotron (SalutTubesManager *self,
goto error;
}
}
- else if (! tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_DBUS_TUBE))
+ else if (!tp_strdiff (channel_type, SALUT_IFACE_CHANNEL_TYPE_DBUS_TUBE))
{
const gchar *service;
@@ -885,7 +885,7 @@ salut_tubes_manager_requestotron (SalutTubesManager *self,
channel = g_hash_table_lookup (priv->channels,
GUINT_TO_POINTER (handle));
- if (! tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES))
+ if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES))
{
if (channel == NULL)
{
--
1.5.6.5
More information about the telepathy-commits
mailing list