Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9629ccca authored by Robert Abel's avatar Robert Abel Committed by Miguel Ojeda
Browse files

auxdisplay: charlcd: replace octal literal with form-feed escape sequence



There is no need to resort to octal escape sequence for the form feed
character when an established escape sequence exists.

Signed-off-by: default avatarRobert Abel <rabel@robertabel.eu>
Signed-off-by: default avatarMiguel Ojeda <miguel.ojeda.sandonis@gmail.com>
parent 8c483758
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -556,7 +556,7 @@ static void charlcd_write_char(struct charlcd *lcd, char c)
			/* back one char again */
			lcd->ops->write_cmd(lcd, LCD_CMD_SHIFT);
			break;
		case '\014':
		case '\f':
			/* quickly clear the display */
			charlcd_clear_fast(lcd);
			break;