diff options
author | kremlin <ian@kremlin.cc> | 2014-08-06 13:58:06 +0800 |
---|---|---|
committer | kremlin <ian@kremlin.cc> | 2014-08-06 13:58:06 +0800 |
commit | 99ef55dde15855f61f7933cf75ad4678fca0f5cb (patch) | |
tree | 421a26f370fed667f798bcbfedf6751e640077fd /src/main.c | |
parent | a0d8931a07a6426f5f46e8320622498fb1401ac2 (diff) | |
download | systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.tar systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.tar.gz systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.tar.bz2 systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.tar.lz systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.tar.xz systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.tar.zst systembsd-99ef55dde15855f61f7933cf75ad4678fca0f5cb.zip |
minor, retab \t's to four spaces
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -21,11 +21,11 @@ int main() { - GMainLoop *mloop; - mloop = g_main_loop_new(NULL, TRUE); - - g_main_loop_run(mloop); - g_main_loop_unref(mloop); + GMainLoop *mloop; + mloop = g_main_loop_new(NULL, TRUE); + + g_main_loop_run(mloop); + g_main_loop_unref(mloop); - return 0; + return 0; } |