Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/fscrypt: fix 32-bit build #235

Merged
merged 2 commits into from
Jun 3, 2020
Merged

cmd/fscrypt: fix 32-bit build #235

merged 2 commits into from
Jun 3, 2020

Commits on Jun 3, 2020

  1. travis.yml: build 32-bit binary

    Don't let people check in code that breaks 32-bit builds.
    
    Update #233
    ebiggers committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    3c15a7a View commit details
    Browse the repository at this point in the history
  2. cmd/fscrypt: fix 32-bit build

    statfs.Bsize actually has platform-dependent type, despite the Go
    documentation listing it as int64.  Fix the build for 32-bit platforms
    by casting it to int64.
    
    Resolves #233
    ebiggers committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    3b075f2 View commit details
    Browse the repository at this point in the history