Fixes the typo in print_seperator()
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);
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);
else return "";
}
-void print_seperator(const char *separator) {
+void print_separator(const char *separator) {
if (output_format == O_I3BAR || strlen(separator) == 0)
return;