mirror of https://github.com/xzeldon/htop.git
Remove trailing whitespaces
This commit is contained in:
parent
3856bf574b
commit
b92f62f912
1
Action.c
1
Action.c
|
@ -615,4 +615,3 @@ void Action_setBindings(Htop_Action* keys) {
|
|||
keys['c'] = actionTagAllChildren;
|
||||
keys['e'] = actionShowEnvScreen;
|
||||
}
|
||||
|
||||
|
|
|
@ -53,4 +53,3 @@ Donations
|
|||
|
||||
If you like htop, feel free to [buy the author a
|
||||
beer](http://hisham.hm/htop/index.php?page=donate). :-)
|
||||
|
||||
|
|
1
COPYING
1
COPYING
|
@ -353,4 +353,3 @@ Public License instead of this License.
|
|||
applicable licenses of the version of PLPA used in your combined work,
|
||||
provided that you include the source code of such version of PLPA when
|
||||
and as the GNU GPL requires distribution of source code.
|
||||
|
||||
|
|
|
@ -164,4 +164,3 @@ void ColumnsPanel_update(Panel* super) {
|
|||
}
|
||||
this->settings->fields[size] = 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -85,4 +85,3 @@ long ListItem_compare(const void* cast1, const void* cast2) {
|
|||
ListItem* obj2 = (ListItem*) cast2;
|
||||
return strcmp(obj1->value, obj2->value);
|
||||
}
|
||||
|
||||
|
|
1
NEWS
1
NEWS
|
@ -2,4 +2,3 @@
|
|||
See the commit history for news of the past.
|
||||
See the bug tracker for news of the future.
|
||||
Run the program for news of the present.
|
||||
|
||||
|
|
|
@ -72,4 +72,3 @@ void Battery_getData(double* level, ACPresence* isOnAC) {
|
|||
CFRelease(power_sources);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -32,4 +32,3 @@ void CRT_handleSIGSEGV(int sgn) {
|
|||
#endif
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
|
@ -32,4 +32,3 @@ void CRT_handleSIGSEGV(int sgn) {
|
|||
#endif
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
|
@ -18,4 +18,3 @@ void CRT_handleSIGSEGV(int sgn) {
|
|||
fprintf(stderr, "\nPlease contact your platform package maintainer!\n\n");
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
|
@ -38,4 +38,3 @@ typedef int IOPriority;
|
|||
#define IOPriority_Idle IOPriority_tuple(IOPRIO_CLASS_IDLE, 7)
|
||||
|
||||
}*/
|
||||
|
||||
|
|
|
@ -41,4 +41,3 @@ Panel* IOPriorityPanel_new(IOPriority currPrio) {
|
|||
IOPriority IOPriorityPanel_getIOPriority(Panel* this) {
|
||||
return (IOPriority) ( ((ListItem*) Panel_getSelected(this))->key );
|
||||
}
|
||||
|
||||
|
|
|
@ -514,4 +514,3 @@ long LinuxProcess_compare(const void* v1, const void* v2) {
|
|||
bool Process_isThread(Process* this) {
|
||||
return (Process_isUserlandThread(this) || Process_isKernelThread(this));
|
||||
}
|
||||
|
||||
|
|
|
@ -19,4 +19,3 @@ void CRT_handleSIGSEGV(int sgn) {
|
|||
fprintf(stderr, "\nPlease contact your platform package maintainer!\n\n");
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
|
@ -400,4 +400,3 @@ void ProcessList_goThroughEntries(ProcessList* this) {
|
|||
OpenBSDProcessList_scanProcs(opl);
|
||||
OpenBSDProcessList_scanCPUTime(opl);
|
||||
}
|
||||
|
||||
|
|
|
@ -5,4 +5,3 @@ void Battery_getData(double* level, ACPresence* isOnAC) {
|
|||
*level = -1;
|
||||
*isOnAC = AC_ERROR;
|
||||
}
|
||||
|
||||
|
|
|
@ -419,4 +419,3 @@ void ProcessList_goThroughEntries(ProcessList* this) {
|
|||
this->kernelThreads = 1;
|
||||
proc_walk(&SolarisProcessList_walkproc, this, PR_WALK_LWP);
|
||||
}
|
||||
|
||||
|
|
|
@ -685,4 +685,3 @@ describe("htop test suite", function()
|
|||
os.execute("make lcov && xdg-open lcov/index.html")
|
||||
end)
|
||||
end)
|
||||
|
||||
|
|
|
@ -5,4 +5,3 @@ void Battery_getData(double* level, ACPresence* isOnAC) {
|
|||
*level = -1;
|
||||
*isOnAC = AC_ERROR;
|
||||
}
|
||||
|
||||
|
|
|
@ -18,4 +18,3 @@ void CRT_handleSIGSEGV(int sgn) {
|
|||
fprintf(stderr, "\nPlease contact your platform package maintainer!\n\n");
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
|
@ -30,4 +30,3 @@ void UnsupportedProcess_delete(Object* cast) {
|
|||
// free platform-specific fields here
|
||||
free(this);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue