diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-11 18:57:03 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-11 18:57:03 -0500 |
| commit | 09a42e0c344ce4c23918c305f7d27ad44116ba8e (patch) | |
| tree | 685cfc15702d5a1bd084f340b24158d2ebf618be /init_windows.go | |
| parent | 7686c6e599212a38b61134eb685c8a4929db6941 (diff) | |
Added the init and testing main functions and started fixing errors. Let's fix the rest and hope it works...
Diffstat (limited to 'init_windows.go')
| -rw-r--r-- | init_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init_windows.go b/init_windows.go index 8e39e2b..a4a0d7f 100644 --- a/init_windows.go +++ b/init_windows.go @@ -69,7 +69,7 @@ func doWindowsInit() (err error) { } err = registerStdWndClass() if err != nil { - reteurn fmt.Errorf("error registering standard window class: %v", err) + return fmt.Errorf("error registering standard window class: %v", err) } // TODO others return nil // all ready to go |
