Update app loader.

This commit is contained in:
Yifan Wu 2021-02-12 13:04:15 +08:00
parent fb8a24fbad
commit 66d7723c72
2 changed files with 27 additions and 27 deletions

View file

@ -38,7 +38,7 @@ _num_app:
.global _app_names
_app_names:"#)?;
for app in apps.iter() {
writeln!(f, r#" .string "{}\n""#, app)?;
writeln!(f, r#" .string "{}""#, app)?;
}
for (idx, app) in apps.iter().enumerate() {