diff options
author | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-01-16 23:45:13 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-01-16 23:45:13 +0000 |
commit | f87146d7c637d774317120dc9e7860113c4b5f73 (patch) | |
tree | 2cb13ade24dc9a6c1e546dc030ede8fa7d2a0a9b /AppPkg | |
parent | 6940c19adfce20553392f23922799243e24e9d16 (diff) | |
download | edk2-f87146d7c637d774317120dc9e7860113c4b5f73.zip edk2-f87146d7c637d774317120dc9e7860113c4b5f73.tar.gz edk2-f87146d7c637d774317120dc9e7860113c4b5f73.tar.bz2 |
AppPkg/Applications/Main/Main.c: Remove EFIAPI from the definition of the main() function.
The main() function should not be declared as EFIAPI. To do so conflicts with the C specification and does not match the internal declaration of main().
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: daryl.mcdaniel@intel.com
Reviewed-by: erik.c.bjorge@intel.com
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14059 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'AppPkg')
-rw-r--r-- | AppPkg/Applications/Main/Main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/AppPkg/Applications/Main/Main.c b/AppPkg/Applications/Main/Main.c index c2762d5..f588a30 100644 --- a/AppPkg/Applications/Main/Main.c +++ b/AppPkg/Applications/Main/Main.c @@ -32,7 +32,6 @@ @retval Other An error occurred.
***/
int
-EFIAPI
main (
IN int Argc,
IN char **Argv
|