diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2012-06-12 22:04:29 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2012-06-13 07:30:06 -0400 |
commit | eadb442b5c825679016de7e7acb837e58f92bfc4 (patch) | |
tree | 1946c704ab52f33218cb3b4f0d8108e40dfe8fdd | |
parent | 492dac7593075e622cfeddc73298df29d50b76bc (diff) |
test: Add missing break in stress-test.c
Found by coverity:
https://bugzilla.redhat.com/show_bug.cgi?id=756069
-rw-r--r-- | test/stress-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/stress-test.c b/test/stress-test.c index 0b48da3f..7fc067e8 100644 --- a/test/stress-test.c +++ b/test/stress-test.c @@ -412,6 +412,7 @@ set_general_properties (pixman_image_t *image, pixman_bool_t allow_alpha_map) case 6: case 7: n_rects = 3; + break; default: n_rects = lcg_rand_n (100); |