Skip to content

Commit 3ed983a

Browse files
committed
Fix formating
1 parent eeeed83 commit 3ed983a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • dd-java-agent/cws-tls/src/main/java/datadog/cws/tls

dd-java-agent/cws-tls/src/main/java/datadog/cws/tls/ErpcTls.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public interface CLibrary extends Library {
3939
static int getGettidSyscallId() {
4040
String arch = System.getProperty("os.arch");
4141
if (arch.equals("amd64")) {
42-
return 186; // 186 is the syscall ID for "gettid" on amd64
42+
return 186; // 186 is the syscall ID for "gettid" on amd64
4343
} else if (arch.equals("arm64")) {
4444
return 178; // 78 is the syscall ID for "gettid" on arm64
4545
}
@@ -52,7 +52,7 @@ static boolean isSupported() {
5252
return false;
5353
}
5454
try {
55-
CLibrary.Instance.syscall(new NativeLong(syscallID));
55+
CLibrary.Instance.syscall(new NativeLong(syscallID));
5656
} catch (UnsatisfiedLinkError error) {
5757
return false;
5858
}

0 commit comments

Comments
 (0)