From 2e68bc02b9a97cf24b3f74d92f3bc6444aa7749a Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sat, 9 Feb 2019 11:38:27 +0200 Subject: [PATCH] drivers: ssd1673: fix typo in string then -> than Signed-off-by: Uri Shaked --- drivers/display/ssd1673.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/display/ssd1673.c b/drivers/display/ssd1673.c index dbe9768677e..7125212d6b4 100644 --- a/drivers/display/ssd1673.c +++ b/drivers/display/ssd1673.c @@ -273,7 +273,7 @@ static int ssd1673_write(const struct device *dev, const u16_t x, u16_t y_end; if (desc->pitch < desc->width) { - LOG_ERR("Pitch is smaller then width"); + LOG_ERR("Pitch is smaller than width"); return -EINVAL; }