diff options
-rw-r--r-- | libpiano/src/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libpiano/src/main.c b/libpiano/src/main.c index 3a16401..d5fa0e7 100644 --- a/libpiano/src/main.c +++ b/libpiano/src/main.c @@ -470,7 +470,6 @@ PianoReturn_t PianoDeleteStation (PianoHandle_t *ph, PianoStation_t *station) { PianoStation_t *curStation = ph->stations, *lastStation = NULL; while (curStation != NULL) { if (curStation == station) { - printf ("deleting station\n"); if (lastStation != NULL) { lastStation->next = curStation->next; } else { |