Changes in / [8847142:c1b0c750] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/app/sportdmp/sportdmp.c ¶
r8847142 rc1b0c750 65 65 66 66 service_id_t svc_id; 67 int rc = loc_service_get_id(svc_path, &svc_id, IPC_FLAG_BLOCKING);67 int rc = loc_service_get_id(svc_path, &svc_id, 0); 68 68 if (rc != EOK) { 69 69 fprintf(stderr, "Cannot find device service %s\n", svc_path); -
TabularUnified uspace/lib/c/generic/str.c ¶
r8847142 rc1b0c750 1085 1085 c = (c >= 'a' ? c - 'a' + 10 : (c >= 'A' ? c - 'A' + 10 : 1086 1086 (c <= '9' ? c - '0' : 0xff))); 1087 if (c > base) {1087 if (c >= base) { 1088 1088 break; 1089 1089 }
Note:
See TracChangeset
for help on using the changeset viewer.