1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-03 09:59:53 +02:00

minor fix for base36enc

This commit is contained in:
Grigory Smolkin 2018-01-11 20:27:08 +03:00
parent eef374e267
commit 8de10e25aa

View File

@ -27,7 +27,7 @@ base36enc(long unsigned int value)
buffer[--offset] = base36[value % 36];
} while (value /= 36);
return buffer;
return &buffer[offset];
}
/*