Commit 49d93c0c authored by Vladislav Sovrasov's avatar Vladislav Sovrasov

Fix line descriptor module build on Win64

parent 1df640a6
......@@ -143,8 +143,8 @@ inline void print_code( UINT64 tmp, int b )
{
for ( long long int j = ( b - 1 ); j >= 0; j-- )
{
printf( "%llu", (long long int) tmp / (UINT64) ( 1 << j ) );
tmp = tmp - ( tmp / (UINT64) ( 1 << j ) ) * (UINT64) ( 1 << j );
printf( "%llu", (long long int) tmp / (UINT64) ( (UINT64)1 << j ) );
tmp = tmp - ( tmp / (UINT64) ( (UINT64)1 << j ) ) * (UINT64) ( (UINT64)1 << j );
}
printf( "\n" );
......
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