X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fguicast%2Farraylist.h;h=ae8d90ddc448658d7eecac0b79a254dc90d5d163;hb=ccd23c15fae578be22d48b1a1e8b09cb43d593ae;hp=5f66b34102a5d96163242f9b815627101d5e4df7;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/guicast/arraylist.h b/cinelerra-5.1/guicast/arraylist.h index 5f66b341..ae8d90dd 100644 --- a/cinelerra-5.1/guicast/arraylist.h +++ b/cinelerra-5.1/guicast/arraylist.h @@ -54,7 +54,7 @@ public: } void remove_object(TYPE value) { remove(value); del(value); } void remove_object_number(int i) { - if( i < total ) { del_value(i); remove_number(i); } + if( i < total ) { del_value(i); remove_number(i); } else fprintf(stderr, "ArrayList::remove_object_number:" " number %d out of range %d.\n", i, total); }