From 9ba0beb413d8b443376c36c1701a0dbce1e8d566 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Thu, 17 May 2018 14:02:42 +0000
Subject: [PATCH] Fixed resize of network for low resolution network like 128x128

---
 src/list.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/list.c b/src/list.c
index 948d960..0e4165d 100644
--- a/src/list.c
+++ b/src/list.c
@@ -11,6 +11,7 @@
 	return l;
 }
 
+/*
 void transfer_node(list *s, list *d, node *n)
 {
     node *prev, *next;
@@ -22,6 +23,7 @@
     if(s->front == n) s->front = next;
     if(s->back == n) s->back = prev;
 }
+*/
 
 void *list_pop(list *l){
     if(!l->back) return 0;

--
Gitblit v1.10.0