Changeset aaf9789c in mainline for uspace/lib/c/test/uuid.c


Ignore:
Timestamp:
2019-02-11T23:08:42Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
db29c34
Parents:
d5a89a3
Message:

syntax correction according make ccheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/test/uuid.c

    rd5a89a3 raaf9789c  
    5353                return false;
    5454        }
    55        
     55
    5656        int f = (uuid.b[8] & 0x80) || (uuid.b[8] & 0x90);
    5757        f = f || (uuid.b[8] & 0xA0) || (uuid.b[8] & 0xB0);
     
    9797        const char *endptr;
    9898        const char *uuid_in_text = "7b1abd05-456f-4661-ab62-917685069343hello world!";
    99        
     99
    100100        ret = uuid_parse(uuid_in_text, &uuid, &endptr);
    101        
     101
    102102        PCUT_ASSERT_ERRNO_VAL(EOK, ret);
    103103        PCUT_ASSERT_TRUE(uuid_valid(uuid));
Note: See TracChangeset for help on using the changeset viewer.