]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
s/SEQUNCE/SEQUENCE/
authorRay Strode <rstrode@redhat.com>
Fri, 20 Jun 2008 16:16:07 +0000 (12:16 -0400)
committerRay Strode <rstrode@redhat.com>
Fri, 20 Jun 2008 16:16:07 +0000 (12:16 -0400)
src/libplybootsplash/ply-window.c

index 6d60a79a7d9f64937f59d4d965529008a94b8a42..712992f75b0f6717e767b1864ee7fe743db623b2 100644 (file)
@@ -53,7 +53,7 @@
 #define KEY_RETURN '\r'
 #define KEY_BACKSPACE '\177'
 
-#define MOVE_CURSOR_SEQUNCE "\033[%d;%df"
+#define MOVE_CURSOR_SEQUENCE "\033[%d;%df"
 
 struct _ply_window
 {
@@ -449,7 +449,7 @@ ply_window_set_text_cursor_position (ply_window_t *window,
   char *sequence;
 
   sequence = NULL;
-  asprintf (&sequence, MOVE_CURSOR_SEQUNCE, row, column);
+  asprintf (&sequence, MOVE_CURSOR_SEQUENCE, row, column);
   write (window->tty_fd, sequence, strlen (sequence));
   free (sequence);
 }