Fix to return non-zero status on error.

This commit is contained in:
Carl Worth 2005-04-07 11:18:40 +00:00
parent 47824dee31
commit 945e6c2458
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-04-07 Carl Worth <cworth@cworth.org>
* test/imagediff.c (main): Fix to return non-zero status on error.
2005-04-06 Owen Taylor <otaylor@redhat.com>
* src/cairo.h src/cairo-gstate.c src/cairo-font.c: Add

View file

@ -77,7 +77,7 @@ main (int argc, char *argv[])
free (buffer);
return 0;
return total_pixels_changed;
}