Skip to content

Commit 22245f8

Browse files
committed
Implement format suggestions
1 parent fb81c79 commit 22245f8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
func logPath() string {
1515
cacheDir := filepath.Join(systemLogDir(), "fyne", "com.fyshos.fin")
16-
err := os.MkdirAll(cacheDir, 0700)
16+
err := os.MkdirAll(cacheDir, 0o700)
1717
if err != nil {
1818
fyne.LogError("Could not create log directory", err)
1919
}

main.gui.go

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pam.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ bool login(const char *username, const char *password, const char *exec, pid_t *
1515
bool logout(void);
1616
*/
1717
import "C"
18+
1819
import (
1920
"errors"
2021
)

0 commit comments

Comments
 (0)