summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Wey2011-02-23 23:30:13 +0100
committerMike Wey2011-02-23 23:30:13 +0100
commite8b49e7144796ae7a6c763f1a2836073a77bc661 (patch)
tree2f1244bbbb312019915187bba37d47749ee10305
parentd05d093854bdadad03456fbccc1a2da490ce410a (diff)
Minor fixups
-rw-r--r--dmagick/Geometry.d2
-rw-r--r--dmagick/Utils.d2
2 files changed, 1 insertions, 3 deletions
diff --git a/dmagick/Geometry.d b/dmagick/Geometry.d
index dec6b4f..0547f49 100644
--- a/dmagick/Geometry.d
+++ b/dmagick/Geometry.d
@@ -33,7 +33,7 @@ struct Geometry
{
MagickStatusType flags;
- //If the strin starts with a letter assume it's a Page Geometry.
+ //If the string starts with a letter assume it's a Page Geometry.
if ( isalpha(geometry[0]) )
{
char* geo = GetPageGeometry(toStringz(geometry));
diff --git a/dmagick/Utils.d b/dmagick/Utils.d
index 2429626..709a218 100644
--- a/dmagick/Utils.d
+++ b/dmagick/Utils.d
@@ -81,8 +81,6 @@ unittest
assert( dest is null );
}
-void main(){}
-
/** */
real degreesToRadians(real deg)
{