mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-02 11:49:33 +01:00
Remove pointless register specifier and warning.
This commit is contained in:
parent
e735d4035f
commit
dbc2f59453
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ void Mootcher::ensureWorkingDir ()
|
|||
//------------------------------------------------------------------------
|
||||
size_t Mootcher::WriteMemoryCallback(void *ptr, size_t size, size_t nmemb, void *data)
|
||||
{
|
||||
register int realsize = (int)(size * nmemb);
|
||||
int realsize = (int)(size * nmemb);
|
||||
struct MemoryStruct *mem = (struct MemoryStruct *)data;
|
||||
|
||||
mem->memory = (char *)realloc(mem->memory, mem->size + realsize + 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue