Changeset 5270:e25346c13638 in roaraudio for libroarpulse/timeval.c


Ignore:
Timestamp:
11/17/11 18:20:12 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

fixed some gcc -Wextra warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroarpulse/timeval.c

    r4708 r5270  
    6969 tv->tv_usec += v; 
    7070 
    71  while ( tv->tv_usec > 1000000LLU ) { 
    72   tv->tv_usec -= 1000000LLU; 
     71 while ( tv->tv_usec > 1000000LL ) { 
     72  tv->tv_usec -= 1000000LL; 
    7373  tv->tv_sec  += 1; 
    7474 } 
Note: See TracChangeset for help on using the changeset viewer.