summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-08 03:40:13 +0000
committerjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-08 03:40:13 +0000
commit8cf7c268db06dbed2ab76511dbb51b8f498fcf0a (patch)
treef5aadfb9544cc41c71b0cf93ff0826dbb2982760
parent80d1b384da6707703124fcf6964ae0ae07b07945 (diff)
downloadedk2-platforms-8cf7c268db06dbed2ab76511dbb51b8f498fcf0a.tar.xz
Fixed the FfsAlignment issue
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1210 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenFfsFileTask.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenFfsFileTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenFfsFileTask.java
index 3c7ebed362..1500fdff66 100644
--- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenFfsFileTask.java
+++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/GenFfsFileTask.java
@@ -490,7 +490,7 @@ public class GenFfsFileTask extends Task implements EfiDefine, FfsTypes {
This function is to get the ffsAligment
@return The value of ffsAligment.
**/
- public int getFfsAligment() {
+ public int getFfsAlignment() {
return this.ffsAlignment;
}
@@ -500,7 +500,7 @@ public class GenFfsFileTask extends Task implements EfiDefine, FfsTypes {
This function is to set ffsAligment
@param ffsAligment The value of ffsAligment.
**/
- public void setFfsAligment(int ffsAligment) {
+ public void setFfsAlignment(int ffsAligment) {
this.ffsAlignment = ffsAligment;
if (this.ffsAlignment > 7) {
throw new BuildException ("FFS_ALIGMENT Scope is 0-7");