summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Berla <corey@berla.me>2023-01-10 10:26:04 -0800
committerOndrej Holy <oholy@redhat.com>2023-01-12 08:17:29 +0100
commite9679b380214cb4dfda2777f0ee5c7674c86530d (patch)
treeebb86d83aada7f399e8e6a8dcadd940e142e24e5
parent3bc0c67e08038c37c7188ca437c69313e15b75b8 (diff)
downloadnautilus-e9679b380214cb4dfda2777f0ee5c7674c86530d.tar.gz
general: Fix style for updated version of uncrustify
The updated version of uncrustify didn't like this style, the new style doesn't look great either.
-rw-r--r--src/nautilus-file-utilities.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nautilus-file-utilities.c b/src/nautilus-file-utilities.c
index dd3367d49..efe42a09c 100644
--- a/src/nautilus-file-utilities.c
+++ b/src/nautilus-file-utilities.c
@@ -639,18 +639,18 @@ special_directory_get_icon (GUserDirectory directory,
gboolean symbolic)
{
#define ICON_CASE(x) \
- case G_USER_DIRECTORY_ ## x: \
- return (symbolic) ? g_themed_icon_new (NAUTILUS_ICON_FOLDER_ ## x) : g_themed_icon_new (NAUTILUS_ICON_FULLCOLOR_FOLDER_ ## x);
+ case G_USER_DIRECTORY_ ## x: \
+ return (symbolic) ? g_themed_icon_new (NAUTILUS_ICON_FOLDER_ ## x) : g_themed_icon_new (NAUTILUS_ICON_FULLCOLOR_FOLDER_ ## x);
switch (directory)
{
- ICON_CASE (DOCUMENTS);
- ICON_CASE (DOWNLOAD);
- ICON_CASE (MUSIC);
- ICON_CASE (PICTURES);
- ICON_CASE (PUBLIC_SHARE);
- ICON_CASE (TEMPLATES);
- ICON_CASE (VIDEOS);
+ ICON_CASE (DOCUMENTS);
+ ICON_CASE (DOWNLOAD);
+ ICON_CASE (MUSIC);
+ ICON_CASE (PICTURES);
+ ICON_CASE (PUBLIC_SHARE);
+ ICON_CASE (TEMPLATES);
+ ICON_CASE (VIDEOS);
default:
{