mirror of https://github.com/xzeldon/htop.git
Cleanup: Fix misc styleguide issues
Signed-off-by: Sohaib Mohamed <sohaib.amhmd@gmail.com>
This commit is contained in:
parent
e64269df2c
commit
21cb1c4d59
|
@ -52,7 +52,7 @@ static HandlerResult ColorsPanel_eventHandler(Panel* super, int ch) {
|
||||||
HandlerResult result = IGNORED;
|
HandlerResult result = IGNORED;
|
||||||
int mark;
|
int mark;
|
||||||
|
|
||||||
switch(ch) {
|
switch (ch) {
|
||||||
case 0x0a:
|
case 0x0a:
|
||||||
case 0x0d:
|
case 0x0d:
|
||||||
case KEY_ENTER:
|
case KEY_ENTER:
|
||||||
|
|
2
Compat.c
2
Compat.c
|
@ -44,7 +44,7 @@ int Compat_faccessat(int dirfd,
|
||||||
|
|
||||||
// Fallback to stat(2)/lstat(2) depending on flags
|
// Fallback to stat(2)/lstat(2) depending on flags
|
||||||
struct stat statinfo;
|
struct stat statinfo;
|
||||||
if(flags) {
|
if (flags) {
|
||||||
ret = lstat(pathname, &statinfo);
|
ret = lstat(pathname, &statinfo);
|
||||||
} else {
|
} else {
|
||||||
ret = stat(pathname, &statinfo);
|
ret = stat(pathname, &statinfo);
|
||||||
|
|
|
@ -35,7 +35,7 @@ static HandlerResult HeaderOptionsPanel_eventHandler(Panel* super, int ch) {
|
||||||
HandlerResult result = IGNORED;
|
HandlerResult result = IGNORED;
|
||||||
int mark;
|
int mark;
|
||||||
|
|
||||||
switch(ch) {
|
switch (ch) {
|
||||||
case 0x0a:
|
case 0x0a:
|
||||||
case 0x0d:
|
case 0x0d:
|
||||||
case KEY_ENTER:
|
case KEY_ENTER:
|
||||||
|
|
|
@ -135,7 +135,7 @@ void InfoScreen_run(InfoScreen* this) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(ch) {
|
switch (ch) {
|
||||||
case ERR:
|
case ERR:
|
||||||
continue;
|
continue;
|
||||||
case KEY_F(3):
|
case KEY_F(3):
|
||||||
|
|
Loading…
Reference in New Issue