diff options
| author | Joseph Richey <joerichey94@gmail.com> | 2017-10-17 03:53:46 -0700 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 02:22:26 -0700 |
| commit | d82fd8b6c15104e6970ab4f2d1abe680fdb95203 (patch) | |
| tree | 8d4d10d17597b552148673972dd1ed8deacecfa1 /cmd/ext4 | |
| parent | bab7dfdf68075b345e4de3ae79ea685ca884668f (diff) | |
fscrypt.go now has no errors
Diffstat (limited to 'cmd/ext4')
| -rw-r--r-- | cmd/ext4/ext4.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ext4/ext4.go b/cmd/ext4/ext4.go index 1df1f23..440fd25 100644 --- a/cmd/ext4/ext4.go +++ b/cmd/ext4/ext4.go @@ -37,7 +37,7 @@ var ( ext4Usage = fmt.Sprintf("(%s | %s) [options]", mountpointArg, deviceArg) ) -func main() { ext4Command.Run() } +func main() { ext4Command.Run(nil) } var ext4Command = &cmd.Command{ Title: "manage ext4 encryption feature flag", |