aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/ada.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r--lib/compilers/ada.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js
index 936f173d9..83ec0294a 100644
--- a/lib/compilers/ada.js
+++ b/lib/compilers/ada.js
@@ -88,7 +88,7 @@ export class AdaCompiler extends BaseCompiler {
'-eS', // commands are not errors
'-cargs', // Compiler Switches for gcc.
'-o',
- outputFilename
+ outputFilename,
);
if (this.compiler.intelAsm && filters.intel) {
@@ -102,7 +102,7 @@ export class AdaCompiler extends BaseCompiler {
'make',
'-eS',
'-g',
- '-cargs' // Compiler Switches for gcc.
+ '-cargs', // Compiler Switches for gcc.
);
}