Skip to content

Commit

Permalink
ArmPlatformPkg: fix undefined reference to memcpy
Browse files Browse the repository at this point in the history
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Scott Duplichan <[email protected]>
Reviewed-by: Olivier Martin <[email protected]>



git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16340 6f19259b-4bc3-4df7-8a09-765794883524
  • Loading branch information
Scott Duplichan authored and oliviermartin committed Nov 12, 2014
1 parent 2ac68e8 commit a23eb77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ DayValid (
IN EFI_TIME *Time
)
{
INTN DayOfMonth[12] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
STATIC CONST INTN DayOfMonth[12] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

if (Time->Day < 1 ||
Time->Day > DayOfMonth[Time->Month - 1] ||
Expand Down

0 comments on commit a23eb77

Please sign in to comment.