From: Wei-Sheng Chin Date: Sat, 2 Nov 2013 06:45:49 +0000 (+0800) Subject: Replace long with long int in linear.cpp for consistency X-Git-Tag: v194~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=713b3874d900b6eba6f1fe5bb5e833cb386c7686;p=liblinear Replace long with long int in linear.cpp for consistency --- diff --git a/linear.cpp b/linear.cpp index c1ea23b..6843833 100644 --- a/linear.cpp +++ b/linear.cpp @@ -2051,8 +2051,8 @@ static void transpose(const problem *prob, feature_node **x_space_ret, problem * int i; int l = prob->l; int n = prob->n; - long nnz = 0; - long *col_ptr = new long[n+1]; + long int nnz = 0; + long int *col_ptr = new long int [n+1]; feature_node *x_space; prob_col->l = l; prob_col->n = n;