]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix typo.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 Jun 2006 14:01:42 +0000 (14:01 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 Jun 2006 14:01:42 +0000 (14:01 +0000)
src/backend/postmaster/pgstat.c

index 29087c1538592b385e391e04494acf54b1baf11f..01ae9c13939238b30a78f68d3c00874a04ed52c7 100644 (file)
@@ -13,7 +13,7 @@
  *
  *     Copyright (c) 2001-2005, PostgreSQL Global Development Group
  *
- *     $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.111.2.4 2006/06/27 03:45:28 alvherre Exp $
+ *     $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.111.2.5 2006/06/27 14:01:42 tgl Exp $
  * ----------
  */
 #include "postgres.h"
@@ -2922,7 +2922,7 @@ pgstat_recv_vacuum(PgStat_MsgVacuum *msg, int len)
        else
        {
                /* last_anl_tuples must never exceed n_live_tuples */
-               tabentry->last_anl_tuplse = Min(tabentry->last_anl_tuples,
+               tabentry->last_anl_tuples = Min(tabentry->last_anl_tuples,
                                                                                msg->m_tuples);
        }
 }