diff options
Diffstat (limited to 'core/load-git.c')
-rw-r--r-- | core/load-git.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/load-git.c b/core/load-git.c index 0fe2c6353..670658d1b 100644 --- a/core/load-git.c +++ b/core/load-git.c @@ -643,7 +643,7 @@ static void parse_dc_date(char *line, struct membuffer *str, void *_dc) { (void) str; struct divecomputer *dc = _dc; update_date(&dc->when, line); } static void parse_dc_deviceid(char *line, struct membuffer *str, void *_dc) -{ (void) str; struct divecomputer *dc = _dc; dc->deviceid = get_hex(line); } +{ (void) str; struct divecomputer *dc = _dc; set_dc_deviceid(dc, get_hex(line)); } static void parse_dc_diveid(char *line, struct membuffer *str, void *_dc) { (void) str; struct divecomputer *dc = _dc; dc->diveid = get_hex(line); } |