Changeset 74c69dc in mainline for uspace/lib


Ignore:
Timestamp:
2026-03-17T12:43:08Z (3 days ago)
Author:
Vít Skalický <skalicky@…>
Children:
4a0bfcf0
Parents:
b017885
Message:

Fix code style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/dirent.c

    rb017885 r74c69dc  
    7676{
    7777        int my_handle;
    78         errno_t rc = vfs_clone(handle, -1, false, &my_handle); // Clone the file handle, otherwise closedir would put the
    79                                                                // handle that was passed to us here by the caller and that we don't own.
     78        // Clone the file handle, otherwise closedir would put the
     79        // handle that was passed to us here by the caller and that we don't own.
     80        errno_t rc = vfs_clone(handle, -1, false, &my_handle);
    8081        if (rc != EOK) {
    8182                errno = rc;
Note: See TracChangeset for help on using the changeset viewer.