Commit 019c9f98 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Fix uninitialized counter. Fixes #221.

git-svn-id: file:///svn/tokudb@1341 c7de825b-a66e-492c-adef-691d508d4ae1
parent 7e25f30c
......@@ -220,7 +220,7 @@ void close_databases (void) {
void gettod (struct timestamp *ts) {
int counter;
static int counter=0;
ts->tv_sec=0;
ts->tv_usec=counter++;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment