diff options
author | John Ankarström <john@ankarstrom.se> | 2022-04-01 19:48:29 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-04-01 19:48:29 +0200 |
commit | bc9ee9be4d6c164687f1797215f1ea3177ef5bb2 (patch) | |
tree | de97d2b0f2a04d6b6649eb8b4d6c0a305e459da1 /c/datalistview.c | |
parent | 226b05d4bdcff492070e715bf0cbd719eb98ac06 (diff) | |
download | EpisodeBrowser-bc9ee9be4d6c164687f1797215f1ea3177ef5bb2.tar.gz |
Adjust formatting.
Diffstat (limited to 'c/datalistview.c')
-rw-r--r-- | c/datalistview.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c/datalistview.c b/c/datalistview.c index 637350d..efeb7d4 100644 --- a/c/datalistview.c +++ b/c/datalistview.c @@ -75,7 +75,7 @@ DlvShowEpisode(int iEpisode) tszKey = TszFromSz(szKey, CP_UTF8); if (!tszKey) continue; tszValue = TszFromSz(szValue, CP_UTF8); - if (!tszValue) goto n; + if (!tszValue) goto c; lviKey.mask = LVIF_TEXT; lviKey.iItem = i; @@ -89,7 +89,7 @@ DlvShowEpisode(int iEpisode) ListView_SetItem(HDlv, &lviValue); free(tszValue); -n: free(tszKey); + c: free(tszKey); } } |