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:
parent
eef374e267
commit
8de10e25aa
@ -27,7 +27,7 @@ base36enc(long unsigned int value)
|
||||
buffer[--offset] = base36[value % 36];
|
||||
} while (value /= 36);
|
||||
|
||||
return buffer;
|
||||
return &buffer[offset];
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user