Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
decriptor committed Dec 22, 2014
1 parent 93af8a3 commit 072f68c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Clients/MainApp/FSpot/PhotoStore.cs
Expand Up @@ -59,7 +59,7 @@ public class PhotoStore : DbStore<Photo>
{
public int TotalPhotos {
get {
IDataReader reader = Database.Query("SELECT COUNT(*) AS photo_count FROM photos");
Hyena.Data.Sqlite.IDataReader reader = Database.Query("SELECT COUNT(*) AS photo_count FROM photos");
reader.Read ();
int total = Convert.ToInt32 (reader ["photo_count"]);
reader.Dispose ();
Expand Down

0 comments on commit 072f68c

Please sign in to comment.