Fix compiler warning about uninitialized variable

This commit is contained in:
Mario Hüttel 2019-06-22 01:27:03 +02:00
parent 8ffcba830d
commit 2510a54aac
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ static void convert_aref_to_sref(struct gds_cell_array_instance *aref, struct gd
struct gds_point origin;
struct gds_point row_shift_vector;
struct gds_point col_shift_vector;
struct gds_cell_instance *sref_inst;
struct gds_cell_instance *sref_inst = NULL;
int col;
int row;