| 281 | DISABLE_WARNING_UNREACHABLE_CODE |
| 282 | |
| 283 | staticfn xint16 |
| 284 | dname_to_dnum(const char *s) |
| 285 | { |
| 286 | xint16 i; |
| 287 | |
| 288 | for (i = 0; i < svn.n_dgns; i++) |
| 289 | if (!strcmp(svd.dungeons[i].dname, s)) |
| 290 | return i; |
| 291 | |
| 292 | panic("Couldn't resolve dungeon number for name \"%s\".", s); |
| 293 | /*NOT REACHED*/ |
| 294 | return (xint16) 0; |
| 295 | } |
| 296 | |
| 297 | RESTORE_WARNING_UNREACHABLE_CODE |
| 298 |
no test coverage detected