diff options
author | Joe <rbo@gmx.us> | 2023-12-15 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-15 20:20:20 +0100 |
commit | 02eadcbb8672b665661eb09ab50359a8c2bbb6e4 (patch) | |
tree | 55d6a10be78ac1d372fac0df6c7970022a95bdce /c_utils.go | |
parent | print (diff) | |
download | hardflip-02eadcbb8672b665661eb09ab50359a8c2bbb6e4.tar.gz hardflip-02eadcbb8672b665661eb09ab50359a8c2bbb6e4.tar.bz2 hardflip-02eadcbb8672b665661eb09ab50359a8c2bbb6e4.tar.xz hardflip-02eadcbb8672b665661eb09ab50359a8c2bbb6e4.tar.zst hardflip-02eadcbb8672b665661eb09ab50359a8c2bbb6e4.zip |
new stuff
Diffstat (limited to 'c_utils.go')
-rw-r--r-- | c_utils.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -53,9 +53,9 @@ import ( ) // c_die displays an error string to the stderr fd and exits the program -// with the return code 1. -// It takes an optional err argument of the error type as a complement of -// information. +// with the return code 1 +// it takes an optional err argument of the error type as a complement of +// information func c_die(str string, err error) { fmt.Fprintf(os.Stderr, "error: %s", str) if err != nil { |