diff options
| author | mutantturkey <crazycal00@gmail.com> | 2011-05-18 23:29:11 -0400 | 
|---|---|---|
| committer | mutantturkey <crazycal00@gmail.com> | 2011-05-18 23:29:11 -0400 | 
| commit | db66a77034156bf0f330bdecfb82a4d89b569da8 (patch) | |
| tree | 9ef91308032b4f11c0902efd05f33d2165af295a | |
| parent | 9028c807cfd507c57a17c33fd144678db25edea0 (diff) | |
fixed the switch statement whoops :)
| -rw-r--r-- | callbacks.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/callbacks.c b/callbacks.c index b4cbd17..39e0ba7 100644 --- a/callbacks.c +++ b/callbacks.c @@ -104,9 +104,10 @@ void cb_load_status (GObject* object, GParamSpec* pspec, tab *t) {          break;      case WEBKIT_LOAD_FINISHED:          break; -    default:      case WEBKIT_LOAD_FAILED:          break; +    default: +        break;      }  } | 
