From 7c4066d254532da51b704b9625c8af550b0e416b Mon Sep 17 00:00:00 2001 From: Hiroshi Saito Date: Tue, 12 Jun 2007 15:39:28 +0000 Subject: [PATCH] Fix *nix build error. --- connection.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/connection.c b/connection.c index 65b38c0..2f5eacc 100644 --- a/connection.c +++ b/connection.c @@ -1279,8 +1279,10 @@ static char CC_initial_log(ConnectionClass *self, const char *func) " Debug" #endif /* DEBUG */ " library" -#endif /* WIN32 */ "\n", POSTGRESDRIVERVERSION, PG_BUILD_VERSION, _MSC_VER); +#else + "\n", POSTGRESDRIVERVERSION, PG_BUILD_VERSION); +#endif /* WIN32 */ qlog(vermsg); mylog(vermsg); qlog("Global Options: fetch=%d, socket=%d, unknown_sizes=%d, max_varchar_size=%d, max_longvarchar_size=%d\n", -- 2.39.5