Changeset b1381c in git


Ignore:
Timestamp:
Nov 27, 2021, 7:48:03 PM (2 years ago)
Author:
jgmbenoit <quatermaster@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
ac19b113e5cae939dcb30d027cc2988e1252d4a8
Parents:
d8c6010f6b6d18969fa6271a54ce44e6b9dbaa1f
git-author:
jgmbenoit <quatermaster@rezozer.net>2021-11-27 19:48:03+01:00
git-committer:
jgmbenoit <quatermaster@rezozer.net>2021-11-27 19:48:14+01:00
Message:
correct spelling as detected by lintian

Description: source typo
 Correct spelling errors as reported by lintian in some binaries;
 meant to silence lintian and eventually to be submitted to the
 upstream maintainer.
Origin: debian
Comment: spelling-error-in-binary
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2021-11-22
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kverify.cc

    rd8c601 rb1381c  
    286286  else // parent ---------------------------------------------------
    287287  {
    288     if (TEST_OPT_PROT) printf("%d childs created\n",cpus);
     288    if (TEST_OPT_PROT) printf("%d children created\n",cpus);
    289289    // wait for all process to stop:
    290290    // each process sends an 0 at end or a 1 for failure
    291291    int res;
    292     int remaining_childs=cpus;
    293     while(remaining_childs>0)
     292    int remaining_children=cpus;
     293    while(remaining_children>0)
    294294    {
    295295      res=rqueue->dequeue();
     
    298298        if (TEST_OPT_PROT) { printf("c");mflush(); }
    299299        //waitpid(-1,NULL,0); // ? see sig_chld_hdl
    300         remaining_childs--;
     300        remaining_children--;
    301301      }
    302302      else if (res==1) // not a GB - clean up and return 0
    303303      {
    304304        if (TEST_OPT_PROT) { printf("C"); mflush(); }
    305         remaining_childs--;
     305        remaining_children--;
    306306        all_okay=FALSE;
    307307        // clean queue:
Note: See TracChangeset for help on using the changeset viewer.