Changeset 2624

Show
Ignore:
Timestamp:
05/23/12 15:33:03 (13 months ago)
Author:
peter
Message:

fix signed/unsigned compiler warning, reported by Aki Tuomi

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/common_startup.cc

    r2614 r2624  
    364364  } 
    365365  unsigned int max_rthreads= ::arg().asNum("receiver-threads"); 
    366   for(int n=0; n < max_rthreads; ++n) 
     366  for(unsigned int n=0; n < max_rthreads; ++n) 
    367367    pthread_create(&qtid,0,qthread, reinterpret_cast<void *>(n)); // receives packets 
    368368