diff options
Diffstat (limited to 'libstorycode')
-rw-r--r-- | libstorycode/stylesheet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstorycode/stylesheet.c b/libstorycode/stylesheet.c index 2b549db..3bbddb3 100644 --- a/libstorycode/stylesheet.c +++ b/libstorycode/stylesheet.c @@ -73,9 +73,9 @@ struct _stylesheet static void copy_col(struct colour *to, struct colour from) { - int i; - for ( i=0; i<4; i++ ) to->rgba[i] = from.rgba[i]; - to->hexcode = from.hexcode; + int i; + for ( i=0; i<4; i++ ) to->rgba[i] = from.rgba[i]; + to->hexcode = from.hexcode; } |