1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

lib/util: usec_time_diff takes arguments the other way round than TvalDiff did

This commit is contained in:
Björn Jacke 2010-09-17 14:05:53 +02:00
parent 10eefd85c9
commit 1a22b1b44d

View File

@ -206,7 +206,7 @@ _PUBLIC_ void smb_msleep(unsigned int t)
t1 = t2;
}
tdiff = usec_time_diff(&t1,&t2)/1000;
tdiff = usec_time_diff(&t2,&t1)/1000;
}
#endif
}