Revision: 18052
          http://sourceforge.net/p/edk2/code/18052
Author:   jljusten
Date:     2015-07-26 08:03:40 +0000 (Sun, 26 Jul 2015)
Log Message:
-----------
MdeModulePkg: Correct the parameter order in match2 sample opcode

The first parameter of match2 opcode should be the pattern
and the second one should be the string.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Dandan Bi <[email protected]>
Reviewed-by: Liming Gao <[email protected]>
Signed-off-by: Laszlo Ersek <[email protected]>

Modified Paths:
--------------
    trunk/edk2/MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr

Modified: trunk/edk2/MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr
===================================================================
--- trunk/edk2/MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr   2015-07-26 
08:03:35 UTC (rev 18051)
+++ trunk/edk2/MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr   2015-07-26 
08:03:40 UTC (rev 18052)
@@ -653,7 +653,7 @@
             refresh interval = 3             // Refresh interval in seconds
     endnumeric;
 
-    grayoutif  match2 (stringref(STRING_TOKEN(STR_STRING)), 
stringref(STRING_TOKEN(STR_PATTERN)), PERL_GUID);
+    grayoutif  match2 (stringref(STRING_TOKEN(STR_PATTERN)), 
stringref(STRING_TOKEN(STR_STRING)), PERL_GUID);
       numeric 
         varid   = MyIfrNVData.Match2,
         prompt  = STRING_TOKEN(STR_MATCH2_PROMPT),


------------------------------------------------------------------------------
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to