Skip to content

Commit df3d752

Browse files
committed
cleanup
1 parent cf577a8 commit df3d752

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pens/main/gdpen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static int color_table[NCOLOR], gdcolor, bgcolor, delay, nx, ny;
6161
static const char *image_type;
6262

6363
#ifdef FFMPEG
64-
static AVCodec *codec = NULL;
64+
static const AVCodec *codec = NULL;
6565
static AVCodecContext *codec_ctx = NULL;
6666
static AVFrame *mpeg_frame = NULL;
6767
#if LIBAVCODEC_VERSION_MAJOR >= 54

trip/iwave/grid/main/standardmodel.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ int main(int argc, char **argv) {
500500
float * x1rs[4] = {NULL,NULL,NULL,NULL}; /* pointers to reflector depth arrays */
501501
float * values[4] = {NULL,NULL,NULL,NULL}; /* pointers to layered value arrays in model 10*/
502502

503-
int i,j;
503+
unsigned int i,j;
504504
char numlname[10];
505505
char valname[10];
506506
char x1rsname[10];

trip/iwave/grid/main/standardmodel_elastic.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ int main(int argc, char **argv) {
536536
float * x1rs[4] = {NULL,NULL,NULL,NULL}; /* pointers to reflector depth arrays */
537537
float * values[4] = {NULL,NULL,NULL,NULL}; /* pointers to layered value arrays in model 10*/
538538

539-
int i,j;
539+
unsigned int i,j;
540540
char numlname[10];
541541
char valname[10];
542542
char x1rsname[10];

0 commit comments

Comments
 (0)