summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar BALATON Zoltan2017-02-09 00:53:21 +0100
committerGravatar BALATON Zoltan2017-11-13 22:12:44 +0100
commit542ef27e70c52dbe76ba00a44b0069844c945ed2 (patch)
tree953e5436a0f66a57af3d16140c67c8ad0ed8f324
parenta87ce4efcbdb9ad3aff3eb52ee9fd9da8e4ab922 (diff)
downloadidevicerestore-542ef27e70c52dbe76ba00a44b0069844c945ed2.tar.gz
idevicerestore-542ef27e70c52dbe76ba00a44b0069844c945ed2.tar.bz2
Remove a comma from array initialiser which some compilers don't like
-rw-r--r--src/restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c
index 05ec228..4870bb5 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -1159,7 +1159,7 @@ static const char* restore_get_bbfw_fn_for_element(const char* elem)
{ "RestoreSBL1", "restoresbl1.mbn" },
{ "SBL1", "sbl1.mbn" },
// ICE16 firmware files
- { "RestorePSI", "restorepsi.bin", },
+ { "RestorePSI", "restorepsi.bin" },
{ "PSI", "psi_ram.bin" },
{ NULL, NULL }
};