diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-14 11:06:16 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-14 11:06:16 +0800 |
commit | 11876331670143b1c9e4d524795e90734632553f (patch) | |
tree | 9566968939c2a8f58d2e8c8ef9c391a311ef3149 | |
parent | 25678df2fe9215cb1d31435e24b91f8be72b9c92 (diff) | |
download | gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.tar gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.tar.gz gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.tar.bz2 gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.tar.lz gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.tar.xz gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.tar.zst gsoc2013-evolution-11876331670143b1c9e4d524795e90734632553f.zip |
redo Chris's previous change to match the surrounding code style
svn path=/trunk/; revision=5420
-rw-r--r-- | e-util/e-font.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-font.c b/e-util/e-font.c index 404bc8ec66..b33a3bc08d 100644 --- a/e-util/e-font.c +++ b/e-util/e-font.c @@ -455,7 +455,7 @@ find_variants (gchar **namelist, gint length, gchar *weight, static GHashTable *wh = NULL; /* Standard, Found, Bold, Light */ gint sw, fw, bw, lw; - gchar *s, *f, *b, *l = NULL; + gchar *s, *f, *b, *l; gchar *p; gint i; @@ -477,7 +477,7 @@ find_variants (gchar **namelist, gint length, gchar *weight, if (sw == 0) return FALSE; fw = 0; lw = 0; bw = 32; - f = NULL; b = NULL; + f = NULL; l = NULL; b = NULL; *lightname = NULL; *boldname = NULL; for (i = 0; i < length; i++) { |