Index: src/untrusted/pll_loader/pll_loader_main.cc |
diff --git a/src/untrusted/pll_loader/pll_loader_main.cc b/src/untrusted/pll_loader/pll_loader_main.cc |
index 2a489bd8e6c7263d7d53bfe2a0340f8e4fd37570..2095b4988f465cca884a1e4a904aa56ae1a86517 100644 |
--- a/src/untrusted/pll_loader/pll_loader_main.cc |
+++ b/src/untrusted/pll_loader/pll_loader_main.cc |
@@ -15,10 +15,8 @@ typedef void (*start_func_t)(int argc, char **argv, char **envp, |
Elf32_auxv_t *auxv); |
int main(int argc, char **argv, char **envp) { |
- // The PLL format does not include module dependencies yet, so all the |
- // modules must be specified on the command line. |
- if (argc <= 2) { |
- fprintf(stderr, "Usage: pll_loader <ELF file>...\n"); |
+ if (argc != 2) { |
+ fprintf(stderr, "Usage: pll_loader <ELF file>\n"); |
return 1; |
} |