Chore: tidy tabs

This commit is contained in:
Carter Li
2025-08-24 19:09:51 +08:00
parent 75a023f4d7
commit 82a1eaf276
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ bool ffNetifGetDefaultRouteImplV4(FFNetifDefaultRouteResult* result)
{
if (destination != 0) continue;
result->ifIndex = if_nametoindex(result->ifName);
// TODO: Get the preferred source address
// TODO: Get the preferred source address
return true;
}
result->ifName[0] = '0';
+4 -4
View File
@@ -471,9 +471,9 @@ const char* ffProcessGetBasicInfoLinux(pid_t pid, FFstrbuf* name, pid_t* ppid, i
if(nRead <= 0)
return "ffReadFileBuffer(/proc/pid/comm, name) failed";
ffStrbufTrimRightSpace(name);
#else
// No /proc/1/comm on Hurd so read /proc/1/stat again
snprintf(procFilePath, sizeof(procFilePath), "/proc/%d/stat", (int)pid);
#else
// No /proc/1/comm on Hurd so read /proc/1/stat again
snprintf(procFilePath, sizeof(procFilePath), "/proc/%d/stat", (int)pid);
char buf[PROC_FILE_BUFFSIZ];
ssize_t nRead = ffReadFileData(procFilePath, sizeof(buf) - 1, buf);
if(nRead <= 8)
@@ -488,7 +488,7 @@ const char* ffProcessGetBasicInfoLinux(pid_t pid, FFstrbuf* name, pid_t* ppid, i
return "sscanf(stat) failed";
ffStrbufRecalculateLength(name);
#endif
#endif
}
#elif defined(__APPLE__)
+5 -5
View File
@@ -86,14 +86,14 @@ const char* ffDetectInitSystem(FFInitSystemResult* result)
}
else if (ffStrbufEqualS(&result->name, "guile"))
{
/* TODO: guile is actually shepherd */
if (ffProcessAppendStdOut(&result->version, (char* const[]) {
ffStrbufEndsWithS(&result->exe, "/guile") ? result->exe.chars : "guile",
"--version",
/* TODO: guile is actually shepherd */
if (ffProcessAppendStdOut(&result->version, (char* const[]) {
ffStrbufEndsWithS(&result->exe, "/guile") ? result->exe.chars : "guile",
"--version",
NULL,
}) == NULL && result->version.length)
{
/* guile (GNU Guile) 3.0.9 */
/* guile (GNU Guile) 3.0.9 */
ffStrbufSubstrBeforeFirstC(&result->version, '\n');
ffStrbufSubstrAfterLastC(&result->version, ' ');
}
+1 -1
View File
@@ -16,7 +16,7 @@ const char* ffDetectSwap(FFlist* result)
if (kvms)
{
const char* swapAuto = get_driver_parameter(kvms, "swap_auto", NULL, NULL);
if (swapAuto)
if (swapAuto)
ffStrbufSetStatic(&swap->name, swapAuto[0] == 'y' ? "Auto" : "Manual");
unload_driver_settings(kvms);
}
+2 -2
View File
@@ -6,8 +6,8 @@
<string>fastfetch</string>
<key>CFBundleName</key>
<string>@PROJECT_NAME@</string>
<key>CFBundleShortVersionString</key>
<string>@PROJECT_VERSION@</string>
<key>CFBundleShortVersionString</key>
<string>@PROJECT_VERSION@</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>NSBluetoothAlwaysUsageDescription</key>