From a2900a4918e368a75eea8d092b7dbbb892de2fc8 Mon Sep 17 00:00:00 2001 From: Haneef Mohammed Date: Fri, 17 Jan 2025 14:06:23 -0500 Subject: [PATCH] lint error --- src/gdb.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gdb.ts b/src/gdb.ts index 87e4e040..52cf1847 100755 --- a/src/gdb.ts +++ b/src/gdb.ts @@ -968,7 +968,7 @@ export class GDBDebugSession extends LoggingDebugSession { } if (!isLoaded && !loadFiles && this.args.executable) { - this.args.loadFiles = [ this.args.executable ]; + this.args.loadFiles = [this.args.executable]; } const ret = this.miDebugger.start(this.args.cwd, this.gdbInitCommands); return ret;