Skip to content

Commit cbc0ba9

Browse files
committed
C: add missing ;
1 parent a6ca9e1 commit cbc0ba9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

psutil/arch/freebsd/proc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ psutil_kinfo_proc(pid_t pid, struct kinfo_proc *proc) {
4343
mib[3] = pid;
4444

4545
if (pid < 0 || !proc)
46-
psutil_badargs("psutil_kinfo_proc")
46+
psutil_badargs("psutil_kinfo_proc");
4747

4848
size = sizeof(struct kinfo_proc);
4949
if (sysctl((int *)mib, 4, proc, &size, NULL, 0) == -1) {

0 commit comments

Comments
 (0)