Changeset 8565a42 in mainline for uspace/srv/logger


Ignore:
Timestamp:
2018-03-02T20:34:50Z (8 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/logger/main.c

    r3061bc1 r8565a42  
    6363{
    6464        printf(NAME ": HelenOS Logging Service\n");
    65        
     65
    6666        parse_initial_settings();
    6767        for (int i = 1; i < argc; i++) {
    6868                parse_level_settings(argv[i]);
    6969        }
    70        
     70
    7171        port_id_t port;
    7272        errno_t rc = async_create_port(INTERFACE_LOGGER_CONTROL,
     
    7676                return rc;
    7777        }
    78        
     78
    7979        rc = async_create_port(INTERFACE_LOGGER_WRITER,
    8080            connection_handler_writer, NULL, &port);
     
    8383                return rc;
    8484        }
    85        
     85
    8686        rc = service_register(SERVICE_LOGGER);
    8787        if (rc != EOK) {
     
    8989                return -1;
    9090        }
    91        
     91
    9292        printf(NAME ": Accepting connections\n");
    9393        async_manager();
    94        
     94
    9595        /* Never reached */
    9696        return 0;
Note: See TracChangeset for help on using the changeset viewer.