hooray idempotence! no wait, not hooray.

SVN revision: 55699
This commit is contained in:
Mike Blumenkrantz 2010-12-22 22:26:53 +00:00
parent c974e62d02
commit d795ae2e34
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ _e_randr_screen_info_new(void)
if (!(ret = malloc(sizeof(E_Randr_Screen_Info)))) return NULL;
ret = memcpy(ret, &default_info, sizeof(default_info));
memcpy(ret, &default_info, sizeof(default_info));
return ret;
}