Fixes for int vs. uintptr args (linux vs. freebsd)

This commit is contained in:
Russ Magee 2020-04-26 01:15:44 +00:00
parent 6bb4b90c87
commit 47a3c6f1b8
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
// +build freebsd
//
// Package logger is a wrapper around UNIX syslog, so that it also may
// be wrapped with something else for Windows (Sadly, the stdlib log/syslog
// is frozen, and there is no Windows implementation.)

View File

@ -1,5 +1,5 @@
// +build linux
//
// Package logger is a wrapper around UNIX syslog, so that it also may
// be wrapped with something else for Windows (Sadly, the stdlib log/syslog
// is frozen, and there is no Windows implementation.)

View File

@ -1,5 +1,5 @@
// +build windows
//
// Wrapper around UNIX syslog, so that it also may be wrapped
// with something else for Windows.
package logger