소스 검색

use unsigned bitmask for consistency in ksigaction

the type doesn't actually matter, just the size, but it's nice to be
consistent...
Rich Felker 12 년 전
부모
커밋
5091e0802f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/internal/ksigaction.h

+ 1 - 1
src/internal/ksigaction.h

@@ -2,5 +2,5 @@ struct k_sigaction {
 	void (*handler)(int);
 	unsigned long flags;
 	void (*restorer)(void);
-	long mask[2];
+	unsigned long mask[2];
 };