You've already forked pg_probackup
mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-09-16 09:26:30 +02:00
minor fix for base36enc
This commit is contained in:
@@ -27,7 +27,7 @@ base36enc(long unsigned int value)
|
||||
buffer[--offset] = base36[value % 36];
|
||||
} while (value /= 36);
|
||||
|
||||
return buffer;
|
||||
return &buffer[offset];
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user