mirror of
https://github.com/postgres/postgres.git
synced 2025-04-21 12:05:57 +03:00
Fix for compile warning, from Ernst Molitor.
This commit is contained in:
parent
5680f8795f
commit
e2617c856e
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.21 1997/10/25 01:08:49 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.22 1997/10/30 05:07:58 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -642,7 +642,7 @@ AsyncExistsPendingNotify(char *relname)
|
||||
p = DLGetSucc(p))
|
||||
{
|
||||
/* Use NAMEDATALEN for relname comparison. DZ - 26-08-1996 */
|
||||
if (!strncmp(DLE_VAL(p), relname, NAMEDATALEN))
|
||||
if (!strncmp((const char *) DLE_VAL(p), relname, NAMEDATALEN))
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user