comparison opt.c @ 8343:a6ca9f8642d6 libavcodec

Remove ending period in a log message, which was inconsistent with most other messages.
author stefano
date Mon, 15 Dec 2008 22:40:28 +0000
parents 54ff3a76b736
children 844463c05193
comparison
equal deleted inserted replaced
8342:e76576f38ade 8343:a6ca9f8642d6
52 void *dst; 52 void *dst;
53 if(!o || o->offset<=0) 53 if(!o || o->offset<=0)
54 return NULL; 54 return NULL;
55 55
56 if(o->max*den < num*intnum || o->min*den > num*intnum) { 56 if(o->max*den < num*intnum || o->min*den > num*intnum) {
57 av_log(NULL, AV_LOG_ERROR, "Value %lf for parameter '%s' out of range.\n", num, name); 57 av_log(NULL, AV_LOG_ERROR, "Value %lf for parameter '%s' out of range\n", num, name);
58 return NULL; 58 return NULL;
59 } 59 }
60 60
61 dst= ((uint8_t*)obj) + o->offset; 61 dst= ((uint8_t*)obj) + o->offset;
62 62