1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-09 14:45:47 +02:00

changed char to unsigned char for sname in the struct pgut_option

This commit is contained in:
VictorSpirin 2018-03-15 17:49:08 +03:00
parent dbd757761c
commit c7bfcdbcd3

View File

@ -58,7 +58,7 @@ typedef enum pgut_optsrc
typedef struct pgut_option
{
char type;
char sname; /* short name */
unsigned char sname; /* short name */
const char *lname; /* long name */
void *var; /* pointer to variable */
pgut_optsrc allowed; /* allowed source */