Jim Meyering wrote: > case EINPROGRESS: > - return "Operation now in progress"; > + m = "Operation now in progress"; > case EALREADY: > - return "Operation already in progress"; > + m = "Operation already in progress";
You have to insert a 'break;' statement after every assignment. Otherwise it's a big fallthrough. Bruno
