mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-11 15:16:27 +01:00
Make a large number of global variables static so they only have file scope when that is all they need. Part of a patch by Campbell Barton
This commit is contained in:
@@ -65,8 +65,8 @@ out.
|
||||
#define BLOCKFILE_DEBUG_OUTPUT(op, i)
|
||||
#endif
|
||||
|
||||
const int headerTagLen = 20;
|
||||
char headerTag[headerTagLen + 1] = "AudacityBlockFile112";
|
||||
static const int headerTagLen = 20;
|
||||
static char headerTag[headerTagLen + 1] = "AudacityBlockFile112";
|
||||
|
||||
SummaryInfo::SummaryInfo(sampleCount samples)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user