Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
cnlohr committed Dec 26, 2024
1 parent ebfc9e5 commit 4acf0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bittester.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ int main( int argc, char ** argv )

printf( "Matching %d bytes\n", i );
printf( "Encode Time: %.3fms (%.3f MBytes/s)\n", (endEnc - startEnc)*1000.0, (sizeof(dummydata)/1024/1024)/(endEnc - startEnc) );
printf( "Deccode Time: %.3fms (%.3f MBytes/s)\n", (endDec - startDec)*1000.0, (sizeof(dummydata)/1024/1024)/(endDec - startDec) );
printf( "Decode Time: %.3fms (%.3f MBytes/s)\n", (endDec - startDec)*1000.0, (sizeof(dummydata)/1024/1024)/(endDec - startDec) );

return 0;
}

0 comments on commit 4acf0fc

Please sign in to comment.