8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5680f87 commit e2617c8Copy full SHA for e2617c8
src/backend/commands/async.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $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 $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -642,7 +642,7 @@ AsyncExistsPendingNotify(char *relname)
642
p = DLGetSucc(p))
643
{
644
/* Use NAMEDATALEN for relname comparison. DZ - 26-08-1996 */
645
- if (!strncmp(DLE_VAL(p), relname, NAMEDATALEN))
+ if (!strncmp((const char *) DLE_VAL(p), relname, NAMEDATALEN))
646
return 1;
647
}
648
0 commit comments