| Summary: | function prototype inconsist in kbdreg.h and kbd.c | ||
|---|---|---|---|
| Product: | Base System | Reporter: | websoft <websoft> |
| Component: | kern | Assignee: | yokota <yokota> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Unspecified | ||
| Hardware: | Any | ||
| OS: | Any | ||
Responsible Changed From-To: freebsd-bugs->yokota Over to syscons/kbd maintainer. State Changed From-To: open->closed Fixed. Thanks. |
header file kbdreg.h declares genkbd_keyaction as: int genkbd_keyaction(keyboard_t *kbd, int keycode, int down, int *shiftstate, int *accents); while in kbd.c the function declared as: int genkbd_keyaction(keyboard_t *kbd, int keycode, int up, int *shiftstate, int *accents) the third parameter name is diff and has opposite meaning.