summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Berla <corey@berla.me>2023-01-10 10:26:04 -0800
committerCorey Berla <corey@berla.me>2023-01-23 16:10:45 -0800
commitaeb3d649605287ba50afb507c048eb4469730f8b (patch)
tree0bf9af2dd0c44e4b44d218f3a71a6e55d472b353
parent7289c32c2bd9f1382764ccc91cd802539e280295 (diff)
downloadnautilus-aeb3d649605287ba50afb507c048eb4469730f8b.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 6043a11e9..e6551b9af 100644
--- a/src/nautilus-file-utilities.c
+++ b/src/nautilus-file-utilities.c
@@ -640,18 +640,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:
{