1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Main: remove extra space and refine code. (#3127)

This commit is contained in:
chundonglinlin 2022-09-01 19:42:49 +08:00 committed by winlin
parent 232fbfa4c3
commit ef04d411c0

View file

@ -257,7 +257,7 @@ void show_macro_features()
if (true) { if (true) {
stringstream ss; stringstream ss;
ss << "SRS on "; ss << "SRS on";
#if defined(__amd64__) #if defined(__amd64__)
ss << " amd64"; ss << " amd64";
#endif #endif
@ -268,7 +268,7 @@ void show_macro_features()
ss << " i386"; ss << " i386";
#endif #endif
#if defined(__arm__) #if defined(__arm__)
ss << "arm"; ss << " arm";
#endif #endif
#if defined(__aarch64__) #if defined(__aarch64__)
ss << " aarch64"; ss << " aarch64";