diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bc0acea..69091b3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,8 @@ Version 1.0 ---------------------------------------------------------------------- +2006-09-25: + * fixed #4, -bg image wasnt working, wrong loop + 2006-09-22: * added new auth method: wpool, hash-based authentification using the whirlpool hash algorithm, updated docs diff --git a/src/bg_image.c b/src/bg_image.c index 7d62050..bf82410 100644 --- a/src/bg_image.c +++ b/src/bg_image.c @@ -109,7 +109,7 @@ static int alock_bg_image_init(const char* args, struct aXInfo* xinfo) { { int scr; - for (scr = 0; xinfo->nr_screens; scr++) { + for (scr = 0; scr < xinfo->nr_screens; scr++) { alock_alloc_color(xinfo, scr, color_name, "black", &color[scr]);