version 1.42 | | version 1.43 |
---|
| | |
/* | | /* |
* static char *rcsid_init_c = | | * static char *rcsid_init_c = |
* "$Id: request.c,v 1.42 2002/07/25 06:57:14 mwedel Exp $"; | | * "$Id: request.c,v 1.43 2002/09/07 05:55:18 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* are added in contigous order, so if the number is in the valid | | * are added in contigous order, so if the number is in the valid |
* range, it must be a valid animation. | | * range, it must be a valid animation. |
*/ | | */ |
if (anim_num < 0 || anim_num >= num_animations) { | | if (anim_num < 0 || anim_num > num_animations) { |
LOG(llevError,"esrv_send_anim (%d) out of bounds??\n",anim_num); | | LOG(llevError,"esrv_send_anim (%d) out of bounds??\n",anim_num); |
return; | | return; |
} | | } |