comparison libaf/af_format.c @ 24521:186626edd969

Fix typo in comment
author reimar
date Sun, 16 Sep 2007 09:00:45 +0000
parents a124f3abc1ec
children 90b0691d9709
comparison
equal deleted inserted replaced
24520:f2a0377c83eb 24521:186626edd969
89 // Make sure this filter isn't redundant 89 // Make sure this filter isn't redundant
90 if(af->data->format == data->format && 90 if(af->data->format == data->format &&
91 af->data->bps == data->bps) 91 af->data->bps == data->bps)
92 return AF_DETACH; 92 return AF_DETACH;
93 93
94 // Check for errors in configuraton 94 // Check for errors in configuration
95 if((AF_OK != check_bps(data->bps)) || 95 if((AF_OK != check_bps(data->bps)) ||
96 (AF_OK != check_format(data->format)) || 96 (AF_OK != check_format(data->format)) ||
97 (AF_OK != check_bps(af->data->bps)) || 97 (AF_OK != check_bps(af->data->bps)) ||
98 (AF_OK != check_format(af->data->format))) 98 (AF_OK != check_format(af->data->format)))
99 return AF_ERROR; 99 return AF_ERROR;