(no commit message)
[prss.git] / src / ttrss_model.c
index 93c9409..3cba736 100644 (file)
@@ -104,7 +104,7 @@ struct headline *headline_new(int id, const char *url, const char *title)
        h->unread = -1;
        h->excerpt = NULL;
        h->content = NULL;
-       
+
        return h;
 }
 
@@ -167,14 +167,10 @@ struct feed *feeds_get_feed(struct feed **feeds, int id)
 {
        struct feed **cur;
 
-       printf("%p\n", feeds);
-
        if (feeds)
                for (cur = feeds; *cur; cur++)
-                       if ((*cur)->id == id) {
-                               printf("match!\n");
+                       if ((*cur)->id == id)
                                return *cur;
-                       }
 
        return NULL;
 }