diff options
author | Werner Lemberg <wl@gnu.org> | 2010-07-12 21:13:22 +0200 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2010-07-12 21:13:22 +0200 |
commit | c8f5b98be26df911f41d804d69ccb6d4bf818a53 (patch) | |
tree | 95737a579b75dafad7682472d332167ab87921ba /src/raster | |
parent | f4e6c155f0a014faea5c698c3aab938d8254a6f9 (diff) |
Remove C++ warnings.
*/*: Initialize pointers where necessary to make g++ happy.
Diffstat (limited to 'src/raster')
-rw-r--r-- | src/raster/ftraster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raster/ftraster.c b/src/raster/ftraster.c index cdde4715..ff3e12c7 100644 --- a/src/raster/ftraster.c +++ b/src/raster/ftraster.c @@ -3400,7 +3400,7 @@ } -#else /* _STANDALONE_ */ +#else /* !_STANDALONE_ */ static int @@ -3408,7 +3408,7 @@ PRaster *araster ) { FT_Error error; - PRaster raster; + PRaster raster = NULL; *araster = 0; @@ -3432,7 +3432,7 @@ } -#endif /* _STANDALONE_ */ +#endif /* !_STANDALONE_ */ static void |