We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27f5f7 commit ad4b775Copy full SHA for ad4b775
pal/src/debug/debug.cpp
@@ -1257,23 +1257,23 @@ DBGAttachProcess(
1257
DWORD processId
1258
)
1259
{
1260
- int attchmentCount;
+ int attachmentCount;
1261
int savedErrno;
1262
#if HAVE_PROCFS_CTL
1263
int fd;
1264
char ctlPath[1024];
1265
#endif // HAVE_PROCFS_CTL
1266
1267
- attchmentCount =
+ attachmentCount =
1268
DBGSetProcessAttached(pThread, hProcess, DBG_ATTACH);
1269
1270
- if (attchmentCount == -1)
+ if (attachmentCount == -1)
1271
1272
/* Failed to set the process as attached */
1273
goto EXIT;
1274
}
1275
1276
- if (attchmentCount == 1)
+ if (attachmentCount == 1)
1277
1278
1279
struct timespec waitTime;
0 commit comments