diff options
author | Alvaro Herrera | 2024-04-05 16:23:10 +0000 |
---|---|---|
committer | Alvaro Herrera | 2024-04-05 16:23:10 +0000 |
commit | b8b37e41ba4aae1e79dcfaeb9eb0fd7549773ff5 (patch) | |
tree | a4def74281eb134cf5e4f94d676f59817dbf9cdb /src | |
parent | 8e392595e5619734db707553e8f72dfacf9ab86c (diff) |
Make libpqsrv_cancel's return const char *, not char *
Per headerscheck's C++ check.
Discussion: https://postgr.es/m/372769.1712179784@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/include/libpq/libpq-be-fe-helpers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/libpq-be-fe-helpers.h b/src/include/libpq/libpq-be-fe-helpers.h index 8be9aa1f2f9..fe508292743 100644 --- a/src/include/libpq/libpq-be-fe-helpers.h +++ b/src/include/libpq/libpq-be-fe-helpers.h @@ -382,11 +382,11 @@ libpqsrv_get_result(PGconn *conn, uint32 wait_event_info) * Note: this function leaks a string's worth of memory when reporting * libpq errors. Make sure to call it in a transient memory context. */ -static inline char * +static inline const char * libpqsrv_cancel(PGconn *conn, TimestampTz endtime) { PGcancelConn *cancel_conn; - char *error = NULL; + const char *error = NULL; cancel_conn = PQcancelCreate(conn); if (cancel_conn == NULL) |