Fix indentation of switch cases.

This commit is contained in:
Guido van Rossum 2013-12-06 17:46:22 -08:00
parent d45a46b60d
commit ee07b94788

View file

@ -1317,7 +1317,7 @@ pyepoll_internal_ctl(int epfd, int op, PyObject *pfd, unsigned int events)
return NULL; return NULL;
} }
switch(op) { switch (op) {
case EPOLL_CTL_ADD: case EPOLL_CTL_ADD:
case EPOLL_CTL_MOD: case EPOLL_CTL_MOD:
ev.events = events; ev.events = events;