Fix an unguarded else clause
authorAntonio Ospite <ao2@ao2.it>
Fri, 23 Jun 2017 14:27:17 +0000 (16:27 +0200)
committerAntonio Ospite <ao2@ao2.it>
Fri, 23 Jun 2017 14:27:17 +0000 (16:27 +0200)
commite295469f16223c351d0048827f86ffdf482f4e8f
treedf6077c4830dae7325d1ce95ea1229ee6b5ba088
parentd73f85e25a6463c6938f070f37041aa02ab169e4
Fix an unguarded else clause

This fixes a gcc warning:

xicursorset.c: In function ‘main’:
xicursorset.c:77:2: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation]
  else
  ^~~~
xicursorset.c:79:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘else’
   if (theme == NULL) {
   ^~
xicursorset.c