From 10f0094be9157eba9d6dad8eace00641de960748 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 13 Mar 2019 21:39:21 +0000 Subject: The pane's style should be initialized to default before parsing the argument. --- colour.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'colour.c') diff --git a/colour.c b/colour.c index a0274dd3..eaee6058 100644 --- a/colour.c +++ b/colour.c @@ -160,7 +160,7 @@ colour_tostring(int c) case 97: return ("brightwhite"); } - return (NULL); + return ("invalid"); } /* Convert colour from string. */ -- cgit