]> git.sur5r.net Git - i3/i3status/commitdiff
Typo in function name
authorMarco Hunsicker <i3@hunsicker.de>
Sat, 1 Mar 2014 10:05:03 +0000 (11:05 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 1 Mar 2014 21:35:37 +0000 (22:35 +0100)
Fixes the typo in print_seperator()

i3status.c
include/i3status.h
src/output.c

index dd971507aab08eb2aa397a1e6c09dd4185619c4d..8d8536c7ec5df24000219db1d9ee2a19ca3706a4 100644 (file)
@@ -476,7 +476,7 @@ int main(int argc, char *argv[]) {
                         printf("\033[u\033[K");
                 for (j = 0; j < cfg_size(cfg, "order"); j++) {
                         if (j > 0)
-                                print_seperator(separator);
+                                print_separator(separator);
 
                         const char *current = cfg_getnstr(cfg, "order", j);
 
index a6cd535a3cdde20b76295dcfcd1a7e19014adafc..95da091af06200455bfa2fb21174b2d40e140812 100644 (file)
@@ -138,7 +138,7 @@ void die(const char *fmt, ...);
 bool slurp(const char *filename, char *destination, int size);
 
 /* src/output.c */
-void print_seperator(const char *separator);
+void print_separator(const char *separator);
 char *color(const char *colorstr);
 char *endcolor() __attribute__ ((pure));
 void reset_cursor(void);
index e56c89253a90e095a8c856a037caf1099b7a17e8..3a43d582e4599d55444079077b98baf9082abfd4 100644 (file)
@@ -52,7 +52,7 @@ char *endcolor(void) {
         else return "";
 }
 
-void print_seperator(const char *separator) {
+void print_separator(const char *separator) {
         if (output_format == O_I3BAR || strlen(separator) == 0)
                 return;