]> granicus.if.org Git - procps-ng/commitdiff
top: miscellaneous accumulated tweaks to code/comments
authorJim Warner <james.warner@comcast.net>
Mon, 27 Jul 2015 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@enc.com.au>
Sun, 23 Aug 2015 11:00:34 +0000 (21:00 +1000)
Jeeze, to correct spelling on one single word (incure)
you had to go and align the entire comments paragraph?

[ well, at least there's one other minor code change ]

Signed-off-by: Jim Warner <james.warner@comcast.net>
top/top.c
top/top.h

index c570061bd4693ed0cd47ecabae98809b853958fe..0199442a3027f90f55eee23ca0f3943d8b321b8d 100644 (file)
--- a/top/top.c
+++ b/top/top.c
@@ -1942,7 +1942,7 @@ static void build_headers (void) {
             if (EU_MAXPFLGS <= f) continue;
 #endif
             if (EU_CMD == f && CHKw(w, Show_CMDLIN)) Frames_libflags |= L_CMDLINE;
-            Frames_libflags |= Fieldstab[w->procflgs[i]].lflg;
+            Frames_libflags |= Fieldstab[f].lflg;
             s = scat(s, justify_pad(N_col(f)
                , VARcol(f) ? w->varcolsz : Fieldstab[f].width
                , CHKw(w, Fieldstab[f].align)));
index 9666983b695f601ebb6d911f61d36a5377a078e6..c6207ff8b5543362112d22c7fc62a5e5d59f963d 100644 (file)
--- a/top/top.h
+++ b/top/top.h
@@ -243,11 +243,11 @@ typedef struct HST_t {
    int pid;                     // record 'key'
 } HST_t;
 #else
-        /* This structure supports 'history' processing and records the
-           bare minimum of needed information from one frame to the next --
-           we don't calc and save data that goes unused like the old top nor
-           do we incure the overhead of sorting to support a binary search
-           (or worse, a friggin' for loop) when retrieval is necessary! */
+        /* This structure supports 'history' processing and records the bare
+           minimum of needed information from one frame to the next -- we do
+           not calc and save data that goes unused like the old top nor will
+           we incur the additional overhead of sort to support binary search
+           (or worse, a friggin' for loop) when retrievals become necessary! */
 typedef struct HST_t {
    TIC_t tics;                  // last frame's tics count
    unsigned long maj, min;      // last frame's maj/min_flt counts