]> git.sur5r.net Git - i3/i3/blobdiff - table.c
Cleanups, first strike. Move stuff to separate files, eliminate warnings
[i3/i3] / table.c
diff --git a/table.c b/table.c
index 9c53237d144fdeda8459d82ced888ccd7fdfe63c..33d1b4fe15d49fc27cb1c715ccc0f5889ccf8b52 100644 (file)
--- a/table.c
+++ b/table.c
@@ -18,6 +18,8 @@ int current_workspace = 0;
 Workspace workspaces[10];
 /* Convenience pointer to the current workspace */
 Workspace *c_ws = &workspaces[0];
+int current_col = 0;
+int current_row = 0;
 
 /*
  * Initialize table
@@ -25,7 +27,6 @@ Workspace *c_ws = &workspaces[0];
  */
 void init_table() {
        int i;
-       printf("sizof(workspaces) = %d\n", sizeof(workspaces));
        memset(workspaces, 0, sizeof(workspaces));
 
        for (i = 0; i < 10; i++) {