| Index: services/files/c/lib/util.cc
|
| diff --git a/services/files/c/lib/util.cc b/services/files/c/lib/util.cc
|
| index e798e73b8769d37c7a1c187c7e077f4abd2a8226..e5cbb0c04b71709b6f26733c7dd4c762f4839ba1 100644
|
| --- a/services/files/c/lib/util.cc
|
| +++ b/services/files/c/lib/util.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "services/files/c/lib/util.h"
|
|
|
| +#include <assert.h>
|
| #include <errno.h>
|
|
|
| namespace mojio {
|
| @@ -36,6 +37,9 @@ int ErrorToErrno(mojo::files::Error error) {
|
| // TODO(vtl): Something better?
|
| return EIO;
|
| }
|
| + assert(false);
|
| + // TODO(vtl): Something better?
|
| + return EIO;
|
| }
|
|
|
| } // namespace mojio
|
|
|