diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2012-03-01 19:46:50 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2012-03-01 19:46:50 +0000 |
| commit | de497c9274d8cbd32cddd86d24e07abe11c32017 (patch) | |
| tree | 058982c7a8077f57885102ea81f5f95e89aba008 /src/extension/internal/gimpgrad.cpp | |
| parent | patch by Veronika Irvine for filter effects dialog sizing (Bug 932474) (diff) | |
| download | inkscape-de497c9274d8cbd32cddd86d24e07abe11c32017.tar.gz inkscape-de497c9274d8cbd32cddd86d24e07abe11c32017.zip | |
fix issues introduced with revision 10932
(bzr r11035)
Diffstat (limited to 'src/extension/internal/gimpgrad.cpp')
| -rw-r--r-- | src/extension/internal/gimpgrad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/internal/gimpgrad.cpp b/src/extension/internal/gimpgrad.cpp index 5a1bbe1c3..8c348dfbb 100644 --- a/src/extension/internal/gimpgrad.cpp +++ b/src/extension/internal/gimpgrad.cpp @@ -224,7 +224,7 @@ GimpGrad::open (Inkscape::Extension::Input */*module*/, gchar const *filename) * add some intermediate stops to convert to the linear/sRGB interpolation */ int type; /* enum: linear, curved, sine, sphere increasing, sphere decreasing. */ int color_interpolation; /* enum: rgb, hsv anticlockwise, hsv clockwise. */ - if (sscanf(p, "%.8d %.8d", &type, &color_interpolation) != 2) { + if (sscanf(p, "%8d %8d", &type, &color_interpolation) != 2) { continue; } } |
