all repos — openbox @ 130075de743f6e37206ddf4419265899284179fd

openbox fork - make it a bit more like ryudo

Fix copy paste typo in swap_byte_order
Pascal Terjan pterjan@google.com
commit

130075de743f6e37206ddf4419265899284179fd

parent

7a6c559948c49c3826db89b3828229d839c4930b

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M obrender/color.cobrender/color.c

@@ -239,7 +239,7 @@ gint x, y, di;

di = 0; for (y = 0; y < im->height; ++y) { - for (x = 0; x < im->height; ++x) { + for (x = 0; x < im->width; ++x) { gchar *c = &im->data[di + x * im->bits_per_pixel / 8]; gchar t;