From 3acae51d9a64cc0ce65e5334df5a3c7a770ad62f Mon Sep 17 00:00:00 2001 From: BlackLight Date: Tue, 26 Oct 2010 22:02:31 +0200 Subject: [PATCH] Fixed a stupid dropped line --- neural.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neural.c b/neural.c index fff97d0..00c3f63 100644 --- a/neural.c +++ b/neural.c @@ -277,7 +277,7 @@ __AI_som_train () { row = (DB_row) DB_fetch_row ( res ); - + tuples[i].gid = row[0] ? strtoul ( row[1], NULL, 10 ) : 0; tuples[i].sid = row[1] ? strtoul ( row[1], NULL, 10 ) : 0; tuples[i].rev = row[2] ? strtoul ( row[2], NULL, 10 ) : 0; tuples[i].timestamp = row[3] ? (time_t) strtol ( row[3], NULL, 10 ) : (time_t) 0;