summaryrefslogtreecommitdiff
path: root/atspi/atspi-accessible.c
diff options
context:
space:
mode:
authorIain Lane <iain@orangesquash.org.uk>2017-05-23 10:39:44 +0100
committerMike Gorse <mgorse@linux-e5s4.suse>2017-05-25 21:18:01 -0500
commit5c1852356f89c8aa8408fc2ff6e33bd9cf1c1f65 (patch)
tree5e62c6348e326d3f833c24ab9b1f047d8f84892b /atspi/atspi-accessible.c
parentce256679cf66e967cf6df0d1585f507c67fd57a3 (diff)
downloadat-spi2-core-5c1852356f89c8aa8408fc2ff6e33bd9cf1c1f65.tar.gz
Fix -Wmisleading-indentation warnings
There are a couple of places where code is indented as if it should be part of an `if' block, but it isn't because there are no braces. Fix those by unindenting. Caught by -Werror=misleading-indentation.
Diffstat (limited to 'atspi/atspi-accessible.c')
-rw-r--r--atspi/atspi-accessible.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/atspi/atspi-accessible.c b/atspi/atspi-accessible.c
index b84317f3..e7f1446c 100644
--- a/atspi/atspi-accessible.c
+++ b/atspi/atspi-accessible.c
@@ -173,13 +173,14 @@ atspi_accessible_finalize (GObject *object)
{
AtspiAccessible *accessible = ATSPI_ACCESSIBLE (object);
- g_free (accessible->description);
- g_free (accessible->name);
+ g_free (accessible->description);
+ g_free (accessible->name);
+
if (accessible->attributes)
g_hash_table_unref (accessible->attributes);
- if (accessible->priv->cache)
- g_hash_table_destroy (accessible->priv->cache);
+ if (accessible->priv->cache)
+ g_hash_table_destroy (accessible->priv->cache);
#ifdef DEBUG_REF_COUNTS
accessible_count--;