Skip to content

Commit

Permalink
Merge pull request #98 from nasa-jpl/kwehage-uninitialized-variable
Browse files Browse the repository at this point in the history
Fix uninitialized variable
  • Loading branch information
davidinkyu-kim authored Aug 14, 2023
2 parents d0fc5b2 + 2d48fe9 commit 4a7e375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/jsd_egd_tlc_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void* tlc_tty_cb(void* jsd_ptr) {
char tlc[8];
char val_str[64];
char val_type[64];
jsd_sdo_data_type_t data_type;
jsd_sdo_data_type_t data_type = JSD_SDO_DATA_UNSPECIFIED;
jsd_sdo_data_t sdo_data;

while (!quit) {
Expand Down

0 comments on commit 4a7e375

Please sign in to comment.