Disabled buffering on stdout

This commit is contained in:
skilion 2018-02-18 18:24:46 +01:00
parent 008a5756b3
commit c231b13ad4
2 changed files with 5 additions and 0 deletions

View file

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
### Fixed
- Crash when the delta link is expired
### Changed
- Disabled buffering on stdout
## [1.1.1] - 2018-01-20
### Fixed

View file

@ -54,6 +54,9 @@ int main(string[] args)
log.error("Try 'onedrive -h' for more information");
return EXIT_FAILURE;
}
// disable buffering on stdout
stdout.setvbuf(0, _IONBF);
if (printVersion) {
std.stdio.write("onedrive ", import("version"));