diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-08-31 11:25:33 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-08-31 11:25:33 +0000 |
commit | 2e88d29f88ffb2313c3b90b0c7cd12c5beb012c7 (patch) | |
tree | 484e27d77acc0bfc9a04c9c06a14e49708c60aec | |
parent | 8c603f2c95e34f8c06994c0454779b76e7f6c012 (diff) | |
download | postgresql-2e88d29f88ffb2313c3b90b0c7cd12c5beb012c7.tar.gz postgresql-2e88d29f88ffb2313c3b90b0c7cd12c5beb012c7.zip |
Fix typo in lstat() macro exposed by new tablespace code.
-rw-r--r-- | src/include/port/win32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index d2a6a7fcf35..6de6959aafa 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.29 2004/08/29 05:06:57 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.30 2004/08/31 11:25:33 momjian Exp $ */ /* undefine and redefine after #include */ #undef mkdir @@ -206,7 +206,7 @@ int setitimer(int which, const struct itimerval * value, struct itimerval * ov /* * Supplement to <sys/stat.h>. */ -#define lstat slat +#define lstat stat /* * Supplement to <errno.h>. |