~ubuntu-branches/ubuntu/quantal/bsdgames/quantal

« back to all changes in this revision

Viewing changes to debian/patches/Fix-typos-spotted-by-Lintian.patch

  • Committer: Package Import Robot
  • Author(s): Tobias Quathamer
  • Date: 2012-03-26 11:52:07 UTC
  • mfrom: (4.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120326115207-var0df2rxa79g0zw
Tags: 2.17-21
* Switch to debhelper v9
* Use all hardening features in DEB_BUILD_MAINT_OPTIONS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Tobias Quathamer <toddy@debian.org>
 
2
Date: Fri, 24 Feb 2012 14:29:11 +0100
 
3
Subject: Fix typos spotted by Lintian
 
4
 
 
5
---
 
6
 atc/update.c |    2 +-
 
7
 hack/hack.c  |    2 +-
 
8
 2 files changed, 2 insertions(+), 2 deletions(-)
 
9
 
 
10
diff --git a/atc/update.c b/atc/update.c
 
11
index 3a145e5..39bbf2a 100644
 
12
--- a/atc/update.c
 
13
+++ b/atc/update.c
 
14
@@ -153,7 +153,7 @@ update(dummy)
 
15
                }
 
16
                if (pp->altitude > 9)
 
17
                        /* "this is impossible" */
 
18
-                       loser(pp, "exceded flight ceiling.");
 
19
+                       loser(pp, "exceeded flight ceiling.");
 
20
                if (pp->altitude <= 0) {
 
21
                        for (i = 0; i < sp->num_airports; i++)
 
22
                                if (pp->xpos == sp->airport[i].x &&
 
23
diff --git a/hack/hack.c b/hack/hack.c
 
24
index 05141af..6e5028e 100644
 
25
--- a/hack/hack.c
 
26
+++ b/hack/hack.c
 
27
@@ -527,7 +527,7 @@ pickup(int all)
 
28
                        }
 
29
        lift_some:
 
30
                        if (inv_cnt() >= 52) {
 
31
-                               pline("Your knapsack cannot accomodate anymore items.");
 
32
+                               pline("Your knapsack cannot accommodate anymore items.");
 
33
                                break;
 
34
                        }
 
35
                        if (wt > -5)
 
36
--