]> code.citadel.org Git - citadel.git/blobdiff - textclient/screen.c
Passing some idle time by applying rules from the style guide to commands.c
[citadel.git] / textclient / screen.c
index 3e0be4d989fca84ce4e056c5d77537205c780d49..45112f7a5bd6578bd4ddb6fb2218ccdb212fe96e 100644 (file)
@@ -230,16 +230,16 @@ void scr_wait_indicator(int state) {
        if (screenwidth > 0) {
                switch (state) {
                default:
-               case 0: /* Idle */
+               case 0: // Idle
                        status_line[sp] = ' ';
                        break;
-               case 1: /* Waiting */
+               case 1: // Waiting
                        status_line[sp] = 'X';
                        break;
-               case 2: /* Receiving */
+               case 2: // Receiving
                        status_line[sp] = '<';
                        break;
-               case 3: /* Sending */
+               case 3: // Sending
                        status_line[sp] = '>';
                        break;
                }