mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2026-06-21 01:34:15 +02:00
minor fix for base36enc
This commit is contained in:
+1
-1
@@ -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