diff options
author | John Wiegley <johnw@newartisans.com> | 2016-09-17 14:41:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-17 14:41:15 -0700 |
commit | 132156766770da8340138aab117cf7e37787403c (patch) | |
tree | 5f837949c367f435d947833c6f52e37473357ee6 /src/main.cc | |
parent | a3b573e1107729e743c96da8ed9272361ba6ae31 (diff) | |
parent | c193cc3a5b4dbf39e19744cf4d30e616298eaa86 (diff) | |
download | ledger-132156766770da8340138aab117cf7e37787403c.tar.gz ledger-132156766770da8340138aab117cf7e37787403c.tar.bz2 ledger-132156766770da8340138aab117cf7e37787403c.zip |
Merge pull request #466 from schmave/win-1
Fix build under msys32; add Appveyor continuous build
Diffstat (limited to 'src/main.cc')
-rw-r--r-- | src/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc index 3a36280a..df1933f9 100644 --- a/src/main.cc +++ b/src/main.cc @@ -74,7 +74,7 @@ int main(int argc, char * argv[], char * envp[]) #endif std::signal(SIGINT, sigint_handler); -#ifndef WIN32 +#ifndef _WIN32 std::signal(SIGPIPE, sigpipe_handler); #endif |