Skip to content

Commit 08c6a6e

Browse files
committed
OS (macOS): don't print build id
Remove special handling
1 parent 5e9fcaf commit 08c6a6e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/modules/os/os.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,6 @@ static void buildOutputDefault(const FFOSResult* os, FFstrbuf* result)
4040
ffStrbufAppend(result, &os->version);
4141
}
4242

43-
#ifdef __APPLE__
44-
if(os->buildID.length > 0)
45-
{
46-
ffStrbufAppendC(result, ' ');
47-
ffStrbufAppend(result, &os->buildID);
48-
}
49-
#endif
50-
5143
//Append variant if it is missing
5244
if(os->variant.length > 0 && ffStrbufFirstIndex(result, &os->variant) == result->length)
5345
{

0 commit comments

Comments
 (0)