diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-19 07:34:31 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-19 07:34:31 +0000 |
| commit | 0a855f3e49426e29f0dd885bb1d4f5282ac6421a (patch) | |
| tree | 29db74c45db59d8eab3499550c12e29e16977e9e | |
| parent | 60cbb9ee92058b7d52bf2a4542c64c7858b00cdd (diff) | |
close the channel by unref'ing it
| -rw-r--r-- | openbox/themerc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/themerc.c b/openbox/themerc.c index b79fc6e1..bcc669e5 100644 --- a/openbox/themerc.c +++ b/openbox/themerc.c @@ -137,7 +137,7 @@ void themerc_startup() if (chan != NULL) { parse(path, g_io_channel_unix_get_fd(chan)); g_free(path); - g_io_channel_close(chan); + g_io_channel_unref(chan); /* close the channel */ } /* non-NULL defaults */ |
