mirror of https://gogs.blitter.com/RLabs/xs
Fixes for int vs. uintptr args (linux vs. freebsd)
This commit is contained in:
parent
6bb4b90c87
commit
47a3c6f1b8
|
@ -1,5 +1,5 @@
|
||||||
// +build freebsd
|
// +build freebsd
|
||||||
//
|
|
||||||
// Package logger is a wrapper around UNIX syslog, so that it also may
|
// 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
|
// be wrapped with something else for Windows (Sadly, the stdlib log/syslog
|
||||||
// is frozen, and there is no Windows implementation.)
|
// is frozen, and there is no Windows implementation.)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// +build linux
|
// +build linux
|
||||||
//
|
|
||||||
// Package logger is a wrapper around UNIX syslog, so that it also may
|
// 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
|
// be wrapped with something else for Windows (Sadly, the stdlib log/syslog
|
||||||
// is frozen, and there is no Windows implementation.)
|
// is frozen, and there is no Windows implementation.)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// +build windows
|
// +build windows
|
||||||
//
|
|
||||||
// Wrapper around UNIX syslog, so that it also may be wrapped
|
// Wrapper around UNIX syslog, so that it also may be wrapped
|
||||||
// with something else for Windows.
|
// with something else for Windows.
|
||||||
package logger
|
package logger
|
||||||
|
|
Loading…
Reference in New Issue