# HG changeset patch # User ib # Date 1301662807 0 # Node ID 2faf1c3ded5d72c37636ddef38c3ff3c0febec5c # Parent 3de646fca03b53dd8597df307f83a85e31407814 Cosmetic: Rearrange variable declarations to match parameters. diff -r 3de646fca03b -r 2faf1c3ded5d gui/skin/skin.c --- a/gui/skin/skin.c Fri Apr 01 12:56:23 2011 +0000 +++ b/gui/skin/skin.c Fri Apr 01 13:00:07 2011 +0000 @@ -699,9 +699,9 @@ // slabel=x,y,fontfile,"text" static int cmd_slabel(char *in) { - char txt[256]; + int x, y, id; char fnt[256]; - int x, y, id; + char txt[256]; wItem *item; if (!window_cmd("slabel")) @@ -751,9 +751,9 @@ // dlabel=x,y,width,align,fontfile,"text" static int cmd_dlabel(char *in) { - char txt[256]; + int x, y, w, a, id; char fnt[256]; - int x, y, w, id, a; + char txt[256]; wItem *item; if (!window_cmd("dlabel"))