commit 2c9e46dfee01c02a9c2b884945d51c1bda717144
parent d6b9e33e2868cc9c82d8fbb6d4f9545725f78971
Author: Vivien Didelot <vivien.didelot@gmail.com>
Date: Thu, 6 Dec 2012 00:38:45 -0500
RGB color notation is 3-byte hexadecimal
Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/i3lock.c b/i3lock.c
@@ -541,7 +541,7 @@ int main(int argc, char *argv[]) {
arg++;
if (strlen(arg) != 6 || sscanf(arg, "%06[0-9a-fA-F]", color) != 1)
- errx(1, "color is invalid, color must be given in 6-byte format: rrggbb\n");
+ errx(1, "color is invalid, it must be given in 3-byte hexadecimal format: rrggbb\n");
break;
}